* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: white;
}

/* Destination Page Container */
.destination-page {
    min-height: 100vh;
    background-color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Container */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Page Title */
.page-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

/* Description Section */
.description-section {
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.description-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Logo Section */
.logo-section {
    margin-bottom: 4rem;
    width: 100%;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

/* Logo Grid - Fully Responsive */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.logo-item {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logo-item img {
    max-height: 4rem;
    width: auto;
    object-fit: contain;
}

/* Query Section */
.query-section {
    margin-top: 5rem;
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.query-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.query-subtitle {
    font-size: 1.25rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Contact Box */
.contact-box {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.contact-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.75;
}

.contact-link {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Trust Section */
.trust-section {
    text-align: center;
}

.trust-text {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

/* Tablet (768px and above) */
@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .content-container {
        padding: 4rem 1.5rem;
    }

    .page-title {
        font-size: 2.25rem;
        margin-bottom: 4rem;
    }

    .description-section {
        margin-bottom: 5rem;
    }

    .description-text {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .logo-item {
        width: 25%;
    }

    .logo-item img {
        max-height: 13.5rem;
    }

    .query-title {
        font-size: 1.875rem;
    }

    .query-subtitle {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 2rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .trust-text {
        font-size: 1.25rem;
    }

    .trust-number {
        font-size: 1.875rem;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
    }

    .content-container {
        padding: 4rem 2rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .query-section {
        margin-top: 6rem;
    }
}

/* Extra responsiveness for logo grid */
@media (min-width: 640px) and (max-width: 767px) {
    .logo-item {
        width: 30%;
    }
}

@media (min-width: 1280px) {
    .logo-item {
        width: 20%;
    }
}