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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #F8FAFC;
}

/* Header */
.header {
    background: #ffffff;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 70px;
    font-weight: 300;
    color: #000000 !important;
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000000 !important;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000000 !important;
    font-weight: 100;
    font-size: 20px;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: #C8B281;
    color: #0F172A;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #B99A60;
    transform: translateY(-1px);
}

.calendar-icon {
    width: 16px;
    height: 16px;
    color: #000000;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-text h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0F172A;
}


.highlight {
    color: #C8B281;
}

.hero-text p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: justify;
}

.whatsapp-text p {
    font-size: 0.9rem;
    color: #2d5016;
    margin: 0;
    line-height: 1.4;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.hero-cta-primary {
    background: #000000;
    color: #FFFFFF;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-primary:hover {
    background: #111111;
    transform: translateY(-2px);
}

.hero-cta-primary .calendar-icon {
    width: 14px;
    height: 14px;
    color: white;
}

.hero-cta-secondary {
    background: transparent;
    color: #000000;
    border: none;
    padding: 0.9rem 1.8rem;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

.hero-cta-secondary:hover {
    color: #c9a96e;
    border-bottom-color: #c9a96e;
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.hero-image {
    position: relative;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 789px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    aspect-ratio: 9/16;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c9a96e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #FFFFFF;
}

.services-preview h2 {
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #c9a96e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000000;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #64748B;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: justify;
}

/* Detailed Services */
.detailed-services {
    padding: 80px 0;
    background: #FFFFFF;
}

.detailed-services h2 {
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.detailed-services-subtitle {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.service-detailed {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-detailed:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon-detailed {
    width: 60px;
    height: 60px;
    background: #c9a96e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-icon-detailed svg {
    width: 32px;
    height: 32px;
}

.service-detailed h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.service-detailed p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: justify;
}

.service-detailed ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detailed li {
    padding: 0.3rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.service-detailed li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a96e;
    font-weight: bold;
}

.service-info-btn {
    background: transparent;
    color: #6c757d;
    border: none;
    padding: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
}

.service-info-btn:hover {
    color: #c9a96e;
}

.service-info-btn .arrow-icon {
    width: 14px;
    height: 14px;
}

.additional-services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    color: #000000;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 0 2rem;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000000;
}

.golden-text {
    color: #c9a96e;
}

.about-text > p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #6c757d;
    text-align: justify;
}

.services-list {
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-icon-small {
    width: 40px;
    height: 40px;
    background: #c9a96e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
}

.service-icon-small svg {
    width: 20px;
    height: 20px;
}

.service-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

.service-text p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    text-align: justify;
}

.certifications {
    margin-top: 2rem;
}

.certifications h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ffffff;
    background: #000000;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: none;
    white-space: nowrap;
}

.cert-icon {
    width: 16px;
    height: 16px;
    color: #c9a96e;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
}

.quote-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    color: white;
}

.quote-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.quote-author {
    font-size: 0.8rem;
    color: #c9a96e;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

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

.testimonial {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #c9a96e;
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: justify;
}

.stars {
    color: #c9a96e;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.85rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-side {
    padding-top: 1rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: #c9a96e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

.contact-details p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    text-align: justify;
}

.whatsapp-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e8f5e8;
    border-radius: 12px;
    border: 1px solid #c3e6c3;
}

.whatsapp-prompt {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
}

.whatsapp-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

.whatsapp-text p {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: justify;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}

.contact-form-side {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-side h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a96e;
    background: white;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #c9a96e;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.submit-btn:hover {
    background: #b8956b;
    transform: translateY(-1px);
}

.submit-btn svg {
    width: 16px;
    height: 16px;
}

/* Success Message */
.success-message {
    background: #F8FAFC;
    border: 2px solid #C8B281;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #C8B281;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-message h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.success-message p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

.contact-details p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

.contact-details p a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: #C8B281;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-logo img {
    width: 50px;
    height: 50px;
}

.brand-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c9a96e;
    margin: 0;
}

.brand-text span {
    font-size: 1rem;
    color: #c9a96e;
    font-weight: 400;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: justify;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #c9a96e;
    color: #000000;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a96e;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column li svg {
    width: 16px;
    height: 16px;
    color: #c9a96e;
    flex-shrink: 0;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c9a96e;
}

.footer-column .schedule {
    color: #cccccc;
    font-size: 0.9rem;
    margin-left: 1.5rem;
}

.footer-certifications {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.cert-badges-footer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.cert-badge-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #cccccc;
}

.cert-badge-footer svg {
    width: 16px;
    height: 16px;
    color: #c9a96e;
}

.regulatory-text {
    text-align: justify;
    font-size: 0.8rem;
    color: #888888;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c9a96e;
}

.footer-disclaimer {
    padding: 1.5rem;
    background: #111111;
    border-radius: 8px;
    border: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #888888;
    margin: 0;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .cert-badges-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
