* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #60a5fa;
    --secondary-color: #34d399;
    --accent-color: #fbbf24;
    --tertiary-color: #a78bfa;
    --highlight-color: #fb7185;
    --dark-color: #4b5563;
    --light-bg: #f0f9ff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --success-color: #34d399;
    --info-color: #60a5fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 50px;
    width: 50px;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.3));
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5), 0 0 10px rgba(0,0,0,0.3);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.header-email {
    font-size: 0.9rem;
    margin: 0;
}

.header-email a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-email a:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--highlight-color);
}

.main-nav a.active {
    color: var(--highlight-color);
    font-weight: 600;
}

.main-nav a.active::after {
    width: 100%;
}

/* Hero Section with Banner - Home Page */
.hero {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(52, 211, 153, 0.15) 50%, rgba(167, 139, 250, 0.15) 100%),
                url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.banner-email {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.banner-email a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-email a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header with Banner */
.page-header {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(52, 211, 153, 0.15) 50%, rgba(167, 139, 250, 0.15) 100%),
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

/* Unique banner images for each page */
.page-header.about-banner {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(167, 139, 250, 0.15) 50%, rgba(251, 191, 36, 0.15) 100%),
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.page-header.services-banner {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(52, 211, 153, 0.15) 50%, rgba(251, 113, 133, 0.15) 100%),
                url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.page-header.contact-banner {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(52, 211, 153, 0.15) 50%, rgba(251, 191, 36, 0.15) 100%),
                url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.page-header .banner-email {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.page-header .banner-email a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-header .banner-email a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

/* Content Sections */
.intro, .content {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro h2, .content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.intro h2::after, .content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color), var(--secondary-color));
    border-radius: 2px;
}

.intro p, .content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 5rem 0 3rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #f0f0f0 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.feature-card:nth-child(1) {
    border-top: 4px solid var(--primary-color);
}

.feature-card:nth-child(2) {
    border-top: 4px solid var(--tertiary-color);
}

.feature-card:nth-child(3) {
    border-top: 4px solid var(--accent-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

/* Services Content */
.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-section:last-child {
    border-bottom: none;
}

.service-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color), var(--secondary-color));
    border-radius: 2px;
}

.service-section:nth-child(1) h2 {
    color: var(--primary-color);
}

.service-section:nth-child(2) h2 {
    color: var(--tertiary-color);
}

.service-section:nth-child(3) h2 {
    color: var(--accent-color);
}

.service-section:nth-child(4) h2 {
    color: var(--secondary-color);
}

.service-section ul {
    margin-top: 1rem;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
    border-left: 4px solid var(--highlight-color);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details a {
    color: #2c5f2d;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Message Styles */
.message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section:nth-child(1) h3 {
    color: var(--primary-color);
}

.footer-section:nth-child(2) h3 {
    color: var(--secondary-color);
}

.footer-section:nth-child(3) h3 {
    color: var(--accent-color);
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--highlight-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .intro h2, .content h2 {
        font-size: 2.2rem;
    }
}

/* Mobile and Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 1rem 0;
    }
    
    header .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo {
        justify-content: flex-start;
        flex: 1;
    }
    
    .logo-link {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
    
    .logo-image {
        height: 40px;
        width: 40px;
    }
    
    .logo-name {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .logo-subtitle {
        font-size: 0.85rem;
        text-align: left;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Navigation */
    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 3;
    }
    
    .main-nav.active {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: left;
        width: 100%;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .banner-email {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .banner-email a {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .page-header {
        padding: 3.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .page-header .banner-email {
        font-size: 0.9rem;
    }
    
    .page-header .banner-email a {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .intro, .content {
        padding: 2.5rem 0;
    }
    
    .intro h2, .content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .intro p, .content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .content ul {
        margin-left: 1.5rem;
    }
    
    .content ul li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .features {
        padding: 3rem 0 2rem 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .about-content, .services-content {
        max-width: 100%;
    }
    
    .service-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .service-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    footer {
        padding: 3rem 0 1rem;
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }
    
    .main-nav a {
        font-size: 0.95rem;
        padding: 0.9rem 1.25rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h2 {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .intro, .content {
        padding: 2rem 0;
    }
    
    .intro h2, .content h2 {
        font-size: 1.6rem;
    }
    
    .intro p, .content p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .service-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-details {
        padding: 1.25rem;
    }
    
    .banner-email a {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .page-header .banner-email a {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

