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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;  
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
    height: 40px;
    width: auto;
    max-height: 40px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2196f3;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    margin-top: 0.5rem;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1e3a5f;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2196f3;
    padding-left: 2rem;
}

.phone a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Messages */
.messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.alert {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-error {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(33, 150, 243, 0.85) 100%), 
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    animation: fadeIn 0.8s ease-in;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: slideDown 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease-in;
}

.quote-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.quote-card h2 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 400;
}

.highlight {
    font-weight: 700;
    color: #1e3a5f;
}

.phone-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 700;
}

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

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
}

.form-input,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    font-family: inherit; 
}

.form-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    transform: translateY(-2px);
}

textarea.form-input {
    resize: vertical;  
    min-height: 80px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text span {
    color: #333;
    line-height: 1.6;
    display: block;
}

.help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.6;
    margin-left: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}

.error {
    color: #c00;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 600;
}

.checkbox-group .error {
    margin-left: 28px;
    margin-top: 0.75rem;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2196f3 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Success Page */
.success-section {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    min-height: 60vh;
    align-items: center;
}

.success-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-message {
    margin: 3rem 0;
}

.success-message h1 {
    color: #28a745;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #28a745;
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: white;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e3a5f;
}

.feature p {
    color: #666;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block !important;  /* Force block layout */
}

.faq-section h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 1.5rem;  /* Changed from 2rem */
    margin-bottom: 2rem;
    display: block;  /* it's on its own line */
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: block;  
}

.faq-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #2196f3;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2196f3;
    transition: transform 0.3s;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding-right: 2rem;
}

/* Page Content */
.page-content {
    background: white;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-content h1 {
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}


/* Footer */
.footer {
    background-color: #1e3a5f;
    color: white;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-tagline {
    color: #b8d4f1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.cert-badge {
    width: 80px;
    height: 80px;
    background: transparent;  
    padding: 0;  
    border-radius: 0;  
}

.cert-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cert-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #b8d4f1;
}

.cert-info strong {
    color: white;
}

.footer-section p {
    color: #b8d4f1;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #64b5f6;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8d4f1;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: #2196f3;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #b8d4f1;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(33, 150, 243, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-in;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: slideDown 0.6s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    animation: slideUp 0.6s ease-out;
}

/* Content Grid */
.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

.content-main h2 {
    color: #1e3a5f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2196f3;
}

.service-card.featured {
    border-color: #2196f3;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2196f3 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2196f3;
    font-weight: bold;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-section h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-method h3 {
    color: #1e3a5f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-method a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-detail {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}



/* Contact CTA */
.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2196f3 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 1;  /* Change from 0.95 to 1 for brighter white */
    color: white;  /* Explicitly set to white */
}

.cta-card .btn-primary {
    background: white;
    color: #1e3a5f;
    box-shadow: none;
}

.cta-card .btn-primary:hover {
    background: #f8f9fa;
}

.faq-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.faq-preview h3 {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item strong {
    color: #1e3a5f;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cta-section h2 {
    color: #1e3a5f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    display: inline-block;
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Autocomplete Dropdown */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-items div:hover {
    background-color: #f0f8ff;
}

.autocomplete-active {
    background-color: #2196f3 !important;
    color: #ffffff;
}

.form-group {
    position: relative; 
}

/* Checkbox error state - apply to both when validation fails */
.checkbox-group.has-error .checkbox-wrapper,
.checkbox-group:has(+ .checkbox-group.has-error) .checkbox-wrapper {
    border: 2px solid #c00;
    border-radius: 6px;
    padding: 0.75rem;
    background: #fee;
}

.checkbox-group.has-error input[type="checkbox"],
.checkbox-group:has(+ .checkbox-group.has-error) input[type="checkbox"] {
    border: 2px solid #c00;
}

/* Also apply error to the checkbox BEFORE the one with error */
.checkbox-group:has(+ .checkbox-group.has-error) .checkbox-wrapper {
    border: 2px solid #c00;
    border-radius: 6px;
    padding: 0.75rem;
    background: #fee;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.25rem;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .phone a {
        font-size: 1rem;
    }
    
    .logo img {
        height: 20px !important;
        max-height: 20px !important;
        width: auto !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .quote-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-certifications {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}