* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Font', sans-serif;
}

body {
    background-color: #070e1c;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

.main-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
    flex: 1;
}

.main-content {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin-top: 15px;
    gap: 20px;
}

.box-left, .box-right {
    background-color: #151b2d;
    border-radius: 25px;
    padding: 25px;
    max-height: 600px;
    box-shadow: 0 4px 12px rgba(255, 107, 187, 0.5);
}

.box-left {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-right {
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: none;
    padding: 0;
}

.contact-icon, .info-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.divider {
    height: 1px;
    background-color: #3a4567;
    width: 100%;
    margin: 5px 0;
}

.contact-info, .working-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-detail {
    color: #fff;
    margin-right: auto;
}

a.contact-detail {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.contact-detail:hover {
    color: #5d8aff;
}

h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #2a3a6b;
    padding-bottom: 10px;
}

@media (max-width: 1024px) {
    .main-content {
        flex-wrap: wrap;
    }
    
    .box-left, .box-right {
        width: 100%;
    }
    
    .box-left {
        order: 2;
        margin-top: 20px;
    }
    
    .box-right {
        order: 1;
        padding: 20px;
    }
}

@media (max-width: 768px) {  
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-icon, .info-icon {
        width: 20px;
        height: 20px;
    }
    
    .contact-header h2 {
        font-size: 1.2rem;
    }
}