* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('images/background.jpeg') center/cover fixed;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 750px;
    width: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    gap: 12px;
}

.header h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info h1 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #FF6B35;
    font-size: 1.1em;
    min-width: 20px;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 0.85em;
}

.topbar {
    background: #fff;
    padding: 24px 0 12px 0;
    box-shadow: 0 2px 8px #0001;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a3d6d;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}

.link-item:hover {
    color: #0d6efd;
}

.icon {
    font-size: 1.4em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.service-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-left: 5px solid #FF6B35;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    background: #fff8f5;
}

.service-icon {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    flex-shrink: 0;
}

.service-content h3 {
    margin: 0 0 4px 0;
    color: #1a3d6d;
    font-weight: 600;
    font-size: 1em;
}

.service-content p {
    margin: 0;
    color: #5f6f87;
    font-size: 0.9em;
}

.service-link {
    display: inline-block;
    margin-top: 6px;
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
}

.service-link:hover {
    text-decoration: underline;
}

.section-header {
    background: #FF6B35;
    color: white;
    padding: 16px 20px;
    margin: 0 -48px 32px -48px;
    font-size: 1.6em;
    font-weight: 700;
}

section {
    padding: 0;
    margin-bottom: 32px;
}

.services-grid {
    padding: 0 10px 32px 10px;
}

.location-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.location-section .location-info {
    padding: 0 20px;
}

.location-section .map-container {
    padding: 0;
}

.location-section h2 {
    margin-bottom: 16px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1em;
}

.location-info i {
    color: #FF6B35;
    font-size: 1.3em;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 650px) {
    .content-wrapper {
        padding: 16px;
    }

    .container {
        padding: 0;
    }

    .header {
        flex-direction: column;
    }

    .links {
        flex-direction: column;
        gap: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 16px 16px 16px;
    }

    .section-header {
        padding: 12px 16px;
        margin: 0 -16px 24px -16px;
        font-size: 1.3em;
    }

    .location-section .location-info,
    .location-section .map-container {
        padding: 0 16px;
    }

    .location-section .map-container {
        padding-bottom: 16px;
    }
}
