/* 
 * Main Styles for Auditoria Financeira Website
 * Color Palette:
 * - Background: #0F1F2C (dark indigo)
 * - Main Text: #F5F7FA (almost white)
 * - Accents: #F5A623 (amber), #EF476F (coral), #06D6A0 (mint)
 * - UI Elements: gradients from #0F1F2C to #132B3D
 */

/* ==================== */
/* Base styles */
/* ==================== */

:root {
    --bg-color: #0F1F2C;
    --text-color: #F5F7FA;
    --accent-1: #F5A623;
    --accent-2: #EF476F;
    --accent-3: #06D6A0;
    --gradient-start: #0F1F2C;
    --gradient-end: #132B3D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 80px;
}

option {
    background-color: #21313c;
   
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-2);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--text-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
}

.btn-secondary:hover {
    background-color: var(--accent-1);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* ==================== */
/* Header & Navigation */
/* ==================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(15, 31, 44, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.site-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-1), transparent);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo-svg {
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.logo-svg:hover {
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-1);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.nav-toggle-label span {
    margin-bottom: 0.5rem;
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

#nav-toggle-checkbox {
    display: none;
}

/* ==================== */
/* Hero Section */
/* ==================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/Y9vbi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 31, 44, 0.85);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* ==================== */
/* About Section */
/* ==================== */

.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-features {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

/* ==================== */
/* Why Section */
/* ==================== */

.why-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    position: relative;
    padding: 30px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover .why-number {
    color: rgba(245, 166, 35, 0.2);
}

.why-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    z-index: 1;
}

.why-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-1);
}

/* ==================== */
/* Services Section */
/* ==================== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gradient-end), var(--gradient-start));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 -15px 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    margin: 15px 0;
    color: var(--accent-1);
}

.service-card p {
    margin-bottom: 25px;
    flex-grow: 1;
}

/* ==================== */
/* Contact Form Section */
/* ==================== */

.contact-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    list-style: none;
    margin-top: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details li i {
    margin-right: 15px;
    color: var(--accent-1);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.3);
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ==================== */
/* Testimonials Section */
/* ==================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    font-family: serif;
    color: var(--accent-1);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== */
/* FAQ Section */
/* ==================== */

.faq-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-toggle:checked + .faq-question {
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* ==================== */
/* Contact Info Section */
/* ==================== */

.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gradient-end), var(--gradient-start));
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-info-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

/* ==================== */
/* Footer */
/* ==================== */

.site-footer {
    padding: 80px 0 30px;
    background-color: rgba(10, 20, 30, 0.95);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column {
    min-width: 160px;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-1);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== */
/* Cookie Popup */
/* ==================== */

.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--gradient-start);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    flex: 1;
}

/* ==================== */
/* Policy Pages Styles */
/* ==================== */

.policy-section {
    padding: 120px 0 80px;
    background-color: var(--bg-color);
}

.policy-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-block {
    margin-bottom: 30px;
}

.policy-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-1);
}

.policy-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-block ul li {
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
    display: block;
}

.cookies-table th, .cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-table th {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--accent-1);
}

.cookies-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* ==================== */
/* Animations */
/* ==================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* Responsive Styles */
/* ==================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .service-icon {
        height: 160px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    /* Padding adjustment */
    .about-section, 
    .why-section, 
    .services-section, 
    .contact-section, 
    .testimonials-section, 
    .faq-section, 
    .contact-info-section {
        padding: 60px 0;
    }
    
    /* Header & Navigation */
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(15, 31, 44, 0.95);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    #nav-toggle-checkbox:checked ~ .main-nav {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu li {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 10px 5px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    #nav-toggle-checkbox:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #nav-toggle-checkbox:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    #nav-toggle-checkbox:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Layout adjustments */
    .about-content,
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .why-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    /* Policy pages adjustments */
    .policy-section {
        padding: 100px 0 60px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .service-icon {
        height: 140px;
        margin: 0 -10px 15px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Layout adjustments */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .why-item {
        padding: 25px 20px;
    }
    
    .policy-content {
        padding: 25px 15px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Cookie popup */
    .cookie-popup {
        width: 95%;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        margin-bottom: 10px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 80px 0;
        height: auto;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    /* Table responsiveness */
    .cookies-table {
        display: block;
        overflow-x: auto;
    }
    
    .service-icon {
        height: 180px;
        margin: 0 -15px 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    /* Section padding */
    .about-section, 
    .why-section, 
    .services-section, 
    .contact-section, 
    .testimonials-section, 
    .faq-section, 
    .contact-info-section {
        padding: 50px 0;
    }
    
    .policy-section {
        padding: 80px 0 40px;
    }
    
    .policy-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .policy-block h2 {
        font-size: 1.3rem;
    }
    
    /* Form elements */
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-toggle:checked ~ .faq-answer {
        padding: 15px;
    }
    
    /* Footer */
    .site-footer {
        padding: 50px 0 20px;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        height: 160px;
    }
}

/* Icon Fonts */
.icon-location:before {
    content: '📍';
}

.icon-phone:before {
    content: '📞';
}

.icon-email:before {
    content: '✉️';
} 