/* 
* Основные стили для финансового аудиторского сайта
* Цветовая палитра:
* - Primary: Deep midnight blue (#0B1B2C)
* - Secondary: Neon lime green (#C4F000)
* - Accent: Peach coral (#F29C91)
* - Text: Off-white (#F6F7F9)
* - Backgrounds: Градиенты от #0B1B2C до #1C1C1E
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0B1B2C;
    --secondary: #C4F000;
    --accent: #F29C91;
    --text: #F6F7F9;
    --bg-dark: #1C1C1E;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Якоря с отступом для фиксированного хедера */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Типографика */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #a8d300;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(11, 27, 44, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(28, 28, 30, 0.9) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 240, 0, 0.15) 0%, rgba(196, 240, 0, 0) 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 156, 145, 0.1) 0%, rgba(242, 156, 145, 0) 50%);
    z-index: 0;
}

.hero .geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 240, 0, 0.1) 0%, rgba(11, 27, 44, 0) 70%);
    z-index: 1;
}

.hero .geometric-shape:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -200px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

.hero .geometric-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
    border-radius: 41% 59% 43% 57% / 51% 39% 61% 49%;
    background: linear-gradient(135deg, rgba(242, 156, 145, 0.1) 0%, rgba(11, 27, 44, 0) 70%);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    background-size: 200px 200px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 40px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
}

/* Introduction Section */
.intro-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.intro-content h2 {
    text-align: left;
}

.intro-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.intro-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-img:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.service-card {
    background: rgba(28, 28, 30, 0.5);
    border-radius: 8px;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 240, 0, 0.1) 0%, rgba(11, 27, 44, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-img {
    width: 100%;
    height: 250px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    padding: 25px;
}

@media (max-width: 992px) {
    .service-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .service-img {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .service-img {
        height: 180px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Features Section */
.features {
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('img/pattern.png') repeat;
    opacity: 0.03;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(196, 240, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary);
    color: var(--primary);
    transform: rotateY(180deg);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, rgba(11, 27, 44, 0.9) 0%, rgba(28, 28, 30, 0.9) 100%);
}

.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: rgba(246, 247, 249, 0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(196, 240, 0, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-title {
    font-size: 0.85rem;
    opacity: 0.7;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(246, 247, 249, 0.3);
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-control.active {
    background-color: var(--secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(28, 28, 30, 0.5);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Order Form Section */
.order-form-section {
    background-color: rgba(11, 27, 44, 0.7);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(246, 247, 249, 0.05);
    border: 1px solid rgba(246, 247, 249, 0.1);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(246, 247, 249, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f6f7f9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select.form-control option {
    background-color: var(--primary);
    color: var(--text);
    padding: 15px;
}

.floating-label {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
    transition: var(--transition);
    color: rgba(246, 247, 249, 0.7);
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
    top: -12px;
    left: 10px;
    font-size: 0.85rem;
    padding: 0 5px;
    background-color: var(--primary);
    color: var(--secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 6px;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group label a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter {
    background-color: rgba(28, 28, 30, 0.7);
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-btn {
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #a8d300;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, rgba(28, 28, 30, 0.9) 0%, rgba(11, 27, 44, 1) 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(196, 240, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(196, 240, 0, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(246, 247, 249, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 10px;
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 240, 0, 0.15);
    font-size: 0.9rem;
    color: rgba(246, 247, 249, 0.7);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: rgba(11, 27, 44, 0.95);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: bottom 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
}

.cookie-popup.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.cookie-popup.hidden {
    bottom: -100px;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .cookie-popup {
        padding: 10px 15px;
        flex-direction: column;
    }
    
    .cookie-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-btn {
    white-space: nowrap;
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn:hover {
    background-color: #a8d300;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 150px auto 80px;
    background-color: rgba(28, 28, 30, 0.5);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(246, 247, 249, 0.1);
}

.policy-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.6rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
        max-width: 95%;
    }
    
    .hero-subtitle {
        max-width: 85%;
        font-size: 1.1rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-img {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        max-width: 95%;
        font-size: 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-btn {
        border-radius: 4px;
        width: 100%;
        padding: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        height: auto;
        min-height: 80vh;
        padding-top: 70px;
        padding-bottom: 30px;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .hero-title {
        margin-bottom: 15px;
        line-height: 1.3;
        font-size: 1.7rem;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 15px;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .hero-btn {
        margin-top: 5px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .order-form-section {
        padding: 20px;
    }
    
    .policy-container {
        padding: 20px;
        margin: 120px auto 60px;
    }
}
