* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a5568;
    --primary-dark: #2d3748;
    --secondary-color: #718096;
    --text-dark: #1a202c;
    --text-light: #a0aec0;
    --bg-light: #2d3748;
    --bg-white: #1a202c;
    --border-color: #4a5568;
    --gradient: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #1a202c;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.company-logo {
    height: 91.125px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover .company-logo {
    opacity: 0.8;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ec4899;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.4;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-image:first-child {
    max-width: 400px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #718096;
}

.btn-secondary:hover {
    background: #718096;
    color: white;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.mission-section,
.vision-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mission-section > *,
.vision-section > * {
    flex-shrink: 0;
}

.mission-section p,
.vision-section p {
    flex-grow: 1;
}

.mission-header,
.vision-header {
    margin-bottom: 1.5rem;
}

.mission-section h3,
.vision-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.mission-section p,
.vision-section p {
    font-size: 1.25rem;
    color: #cbd5e0;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    padding-left: 0;
}

.mission-image,
.vision-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-top: auto;
    align-self: flex-end;
}

/* Values Section */
.values {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #1a202c;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #2d3748;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ec4899;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    font-weight: 900;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Infrastructure Section */
.infrastructure {
    background: var(--bg-white);
}

.infrastructure-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.infra-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 250px;
}

.infra-image:hover {
    transform: scale(1.05);
}

.infrastructure-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--gradient);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid #718096;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.infrastructure-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    color: #cbd5e0;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #1a202c;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #2d3748;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ec4899;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    color: #cbd5e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #718096;
    font-weight: 700;
}

/* Flagship Section */
.flagship {
    background: #1a202c;
    background-image: url('images/image-9-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.flagship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.8);
    z-index: 0;
}

.flagship .container {
    position: relative;
    z-index: 1;
}

.flagship-content {
    max-width: 1000px;
    margin: 0 auto;
}

.flagship-images-row1,
.flagship-images-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.flagship-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 300px;
}

.flagship-image:hover {
    transform: scale(1.05);
}

.flagship-intro {
    font-size: 1.125rem;
    color: #cbd5e0;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
}

.flagship-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: #1a202c;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid #2d3748;
}

.feature-item strong {
    color: #ec4899;
    font-size: 1.125rem;
}

.feature-item span {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.flagship-details {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.flagship-detail-item {
    display: flex;
    flex-direction: column;
}

.flagship-details h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.flagship-details p {
    color: #cbd5e0;
    line-height: 1.8;
    margin: 0;
}

/* Expansion Section */
.expansion {
    background: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expansion-map {
    margin-bottom: 3rem;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.expansion-map-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expansion-map-image:hover {
    transform: scale(1.02);
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expansion-card {
    background: #2d3748;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #4a5568;
}

.country-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
    color: #ffffff;
}

.country-icon i {
    color: #ffffff;
}

.expansion-card:hover {
    border-color: #718096;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.expansion-card h3 {
    font-size: 1.5rem;
    color: #ec4899;
    margin-bottom: 1rem;
}

.expansion-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Investment Section */
.investment {
    background: var(--bg-light);
}

.investment-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.investment-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: contain;
    background: #2d3748;
    padding: 1rem;
}

.investment-image:hover {
    transform: scale(1.02);
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.investment-stat {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #4a5568;
}

.investment-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.investment-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.investment-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.investment-desc {
    font-size: 0.95rem;
    color: #cbd5e0;
}

.investment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.investment-content p {
    font-size: 1.125rem;
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.investment-model {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.model-item {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a5568;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.model-item-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.model-item h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.model-item p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin: 0;
}

/* Technology Section */
.technology {
    background: var(--bg-white);
}

.tech-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.tech-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 250px;
    grid-column: span 1;
}

.tech-image:hover {
    transform: scale(1.05);
}

.tech-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 1rem;
    background: #2d3748;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tech-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-card {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #4a5568;
    display: flex;
    flex-direction: column;
}

.tech-card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    max-height: 250px;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #cbd5e0;
    line-height: 1.8;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-item {
    background: #2d3748;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #4a5568;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: #cbd5e0;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: #1a202c;
    background-image: url('images/image-1006-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.85);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #cbd5e0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.contact-item {
    background: #2d3748;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a5568;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.contact-item p {
    color: #cbd5e0;
    margin: 0;
}

.contact-form {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a5568;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #1a202c;
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #718096;
    background-color: #2d3748;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 32, 44, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .values-grid,
    .infrastructure-stats,
    .expansion-grid,
    .investment-stats,
    .tech-grid,
    .timeline-items {
        grid-template-columns: 1fr;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-header,
    .vision-header {
        text-align: center;
    }

    .mission-section h3,
    .vision-section h3 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .investment-model {
        grid-template-columns: 1fr;
    }

    .infrastructure-images,
    .tech-images {
        grid-template-columns: 1fr;
    }

    .flagship-images-row1,
    .flagship-images-row2 {
        grid-template-columns: 1fr;
    }

    .flagship-details {
        grid-template-columns: 1fr;
    }

    .investment-images {
        grid-template-columns: 1fr;
    }

    .hero-images {
        flex-direction: column;
    }

    .hero-image {
        max-width: 250px;
    }

    .hero-image:first-child {
        max-width: 300px;
    }

    .expansion-map {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .mission-vision-additional {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

