
:root {
    --primary: #0C5B8E;
    --primary-dark: #064472;
    --primary-light: #1478B7;
    --secondary: #E8A01C;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
 
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    background-color: white !important;
}

.nav-link {
    color: var(--dark);
    margin: 0 0.5rem;
    position: relative;
    font-weight: 600;
}

.nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ####################### Hero Section ############################# */

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: none; /* Remove default background */
    color: white;
    overflow: hidden;
}

/* Background image layer */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.8;
}

/* Gradient overlay layer */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 91, 142, 0.8) 0%, rgba(6, 68, 114, 0.75) 100%);
    z-index: 1;
}

/* Content container */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero content styles */
.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 80%;
}


/* ########################## Services Section ########################## */

/* Modern Services Section */
.services {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

/* Background decoration elements */
.services::before, 
.services::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.services::before {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(12, 91, 142, 0.05) 0%, rgba(12, 91, 142, 0.1) 100%);
    top: -100px;
    right: -100px;
}

.services::after {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(232, 160, 28, 0.05) 0%, rgba(232, 160, 28, 0.1) 100%);
    bottom: -80px;
    left: -80px;
}

/* Modern section title with animated underline */
.section-title {
    position: relative;
    margin-bottom: 5rem;
    text-align: center;
    z-index: 1;
}

.section-title h2 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}

.section-title h2::before {
    content: "";
    position: absolute;
    width: 40%;
    height: 4px;
    background-color: var(--secondary);
    bottom: -12px;
    left: 30%;
    border-radius: 4px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 4px;
    background-color: var(--primary);
    bottom: -12px;
    left: 40%;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Service card with glassmorphism effect */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1;
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 10px;
}

/* Modern service number with gradient */
.service-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-right: 1.2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    box-shadow: 0 5px 15px rgba(12, 91, 142, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(12, 91, 142, 0.3);
}

.service-number::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px dashed var(--secondary);
    top: -5px;
    left: -5px;
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-number::after {
    opacity: 1;
}

/* Card content styling */
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.service-card:hover h3 {
    color: var(--primary);
    transform: translateX(5px);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--dark);
}

/* Modern button styling */
.service-card .btn-outline-primary {
    border-width: 2px;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card .btn-outline-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.service-card:hover .btn-outline-primary::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .services {
        padding: 6rem 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .services::before {
        width: 200px;
        height: 200px;
    }
    
    .services::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.5);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ########################## Features  #########################################*/

/* Modern Features Section */
.features {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    overflow: hidden;
}

/* Background decorative elements */
.features::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(12, 91, 142, 0.03) 0%, rgba(12, 91, 142, 0) 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
}

.features::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 160, 28, 0.03) 0%, rgba(232, 160, 28, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

/* Enhanced feature item */
.feature-item {
    padding: 3.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: white;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Background highlight effect */
.feature-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(12, 91, 142, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(12, 91, 142, 0.1);
}

.feature-item:hover::after {
    opacity: 1;
}

/* Modern icon wrapper with 3D effect */
.feature-icon-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 2.5rem;
    padding: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(12, 91, 142, 0.15);
    transition: all 0.5s ease;
}

.feature-icon-wrapper::before {
    content: "";
    position: absolute;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    top: -8px;
    left: -8px;
    animation: rotate 20s linear infinite;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 30px rgba(12, 91, 142, 0.2);
}

.feature-item:hover .feature-icon-wrapper::before {
    border-width: 3px;
    animation-duration: 10s;
}

/* Enhanced icon */
.feature-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    transition: all 0.5s ease;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    top: 0;
    left: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-item:hover .feature-icon {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon::after {
    opacity: 0.8;
}

/* Enhanced typography */
.feature-item h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 3px;
}

.feature-item:hover h3 {
    color: var(--primary);
}

.feature-item:hover h3::after {
    width: 60px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover p {
    color: var(--dark);
}

/* Fancy button */
.feature-item .btn {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item .btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--primary), transparent);
    transition: height 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.feature-item:hover .btn-outline-primary {
    border-color: var(--primary-dark);
    color: white;
    background-color: var(--primary);
}

.feature-item:hover .btn::before {
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .features {
        padding: 7rem 0;
    }
    
    .feature-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 3rem 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .feature-item {
        margin-bottom: 2.5rem;
    }
    
    .feature-icon-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .features {
        padding: 5rem 0;
    }
    
    .feature-item {
        padding: 2.5rem 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.8rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
}

/* Animation for rotating border */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* CTA Section */
/* Modern CTA Section with enhanced visual elements */
.cta {
    position: relative;
    padding: 8rem 0;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    overflow: hidden;
    z-index: 1;
}

/* Enhanced background elements */
.cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0) 70%);
    top: -250px;
    right: -100px;
    animation: pulse-slow 10s infinite alternate;
}

.cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    left: -100px;
    animation: pulse-slow 15s infinite alternate-reverse;
}

/* Additional decorative elements */
.cta-decoration {
    position: absolute;
    z-index: 0;
}

.cta-decoration-1 {
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

.cta-decoration-2 {
    bottom: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--secondary) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    animation: float 10s ease-in-out 2s infinite;
}

/* ################################## Contact ####################################### */
/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--light);
}

/* Contact Form Container */
.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    padding: 2.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 15px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.required {
    color: #dc3545;
}

/* Form Inputs */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 91, 142, 0.1);
    outline: none;
}

/* Error Messages */
.error-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

/* Submit Button */
.form-submit {
    text-align: right;
    margin-top: 30px;
}

button#submitButton {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

button#submitButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(12, 91, 142, 0.2);
}

.button-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

button#submitButton:hover .button-icon {
    transform: translateX(5px);
}

/* Form Status */
.form-status {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #0f5132;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.form-status.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.form-status.sending {
    background-color: rgba(12, 91, 142, 0.1);
    color: var(--primary);
    border: 1px solid rgba(12, 91, 142, 0.2);
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-form-container,
    .contact-info {
        padding: 2rem;
    }
    
    .form-submit {
        text-align: center;
    }
}

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

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer .footer-links a.active {
    color: #4053B1;
    font-weight: 600;
}

/* Utilities */
.shadow-custom {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ############## Language switcher ########################*/

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  
  .lang-switch {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .lang-switch:hover {
    color: var(--primary);
    background-color: rgba(12, 91, 142, 0.05);
  }
  
  .lang-switch.active {
    color: var(--primary);
    background-color: rgba(12, 91, 142, 0.1);
  }
  
  /* Mobile responsive adjustments */
  @media (max-width: 991.98px) {
    .language-selector {
      margin: 15px 0 0;
      justify-content: center;
    }
    
    .lang-switch {
      padding: 8px 15px;
      margin: 0 5px;
    }
  }
  
/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .navbar-nav {
        background-color: white;
        padding: 1rem 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .feature-item {
        margin-bottom: 2rem;
    }
}
