/* Global Styles */
:root {
    --primary-bg-start: #1B1B3A;
    --primary-bg-end: #9C27B0;
    --text-color: #FFFFFF;
    --heading-color: #FFEB3B;
    --button-color: #F50057;
    --border-color: #E0E0E0;
    --section-bg-dark: #2A2A4F;
    --section-bg-light: #EDE7F6;
    --form-border: #FF4081;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg-start), var(--primary-bg-end));
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
}

a {
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--button-color);
}

section {
    padding: 60px 0;
}

/* Alternating section backgrounds */
section:nth-child(odd) {
    background-color: var(--section-bg-dark);
}

section:nth-child(even) {
    background-color: var(--section-bg-light);
    color: #333;
}

section:nth-child(even) h2 {
    color: #000000;
}

/* Header Styles */
header {
    background-color: rgba(27, 27, 58, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin-left: 25px;
}

.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--heading-color);
}

.nav-cta {
    background-color: var(--button-color);
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 25px !important;
}

.nav-cta:hover {
    background-color: #d10048;
    color: white !important;
}

/* Mobile Navigation with PHP checkbox hack */
.mobile-nav-container {
    display: none;
}

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-button {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-icon::before {
    content: '';
    top: -8px;
}

.mobile-menu-icon::after {
    content: '';
    bottom: -8px;
}

.mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-start);
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: var(--text-color);
    font-size: 18px;
    display: block;
    padding: 5px 0;
}

/* Checkbox hack for mobile menu toggle */
.mobile-menu-checkbox:checked ~ .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-button .mobile-menu-icon {
    background-color: transparent;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-button .mobile-menu-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-button .mobile-menu-icon::after {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-image: url('../img/9Y2DiU.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 58, 0.7);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--button-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #d10048;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

/* About Section */
.about-section {
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    text-align: center;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000000;
}

/* How It Works Section */
.how-it-works-section {
    text-align: center;
}

.how-it-works-section h3 {
    color: #FFFFFF;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    background-color: var(--button-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Why Us Section */
.why-us-section {
    text-align: center;
}

.why-us-section h2 {
    color: #000000;
}

.why-us-section h3 {
    color: #000000;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.benefit p {
    color: #000000;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #000000;
}

.testimonial cite {
    font-weight: 600;
    color: #000000;
}

/* FAQ Section */
.faq-section {
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    list-style: none;
    text-align: left;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 20px 20px;
    text-align: left;
}

/* Order Form Section */
.order-form-section {
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 30px auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--form-border);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.form-group select option {
    background-color: #FFFFFF;
    color: #000000;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-group label {
    color: #000000;
}

.checkbox-group a {
    color: #000000;
    text-decoration: underline;
}

.submit-button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #d10048;
    transform: translateY(-3px);
}

/* Trust Section */
.trust-section {
    text-align: center;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.astrologer-img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-bg-start);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact h4,
.footer-links h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--heading-color);
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-button:hover {
    background-color: #d10048;
}

.cookie-link {
    color: var(--heading-color);
    text-decoration: underline;
    margin-left: 15px;
}

/* Policy Pages Styling */
.policy-page {
    background-color: #fff;
    color: #000;
    padding: 50px 0;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #D1C4E9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
    color: var(--primary-bg-start);
    text-align: center;
    margin-bottom: 30px;
}

.policy-container h2 {
    color: var(--primary-bg-start);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
    margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
    margin-left: 20px;
}

.policy-container li {
    margin-bottom: 8px;
}

.policy-container a {
    color: #000000;
    text-decoration: underline;
}

/* Extra Pages Styling */
.extra-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.extra-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Styling */
.blog-intro {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.2rem;
    border-left: 3px solid var(--heading-color);
    padding-left: 15px;
}

.blog-categories {
    margin: 30px 0;
    text-align: left;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.category-tag {
    background-color: rgba(245, 0, 87, 0.2);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tag:hover {
    background-color: rgba(245, 0, 87, 0.4);
    transform: translateY(-2px);
}

.blog-featured {
    margin: 30px 0;
    text-align: left;
}

.featured-post {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--heading-color);
    margin-top: 20px;
}

.featured-post h3 {
    color: #FFFFFF;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.featured-content {
    margin: 15px 0;
    color: #FFFFFF;
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
}

.blog-preview {
    text-align: left;
    margin-top: 30px;
}

.blog-preview h2 {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    color: #FFFFFF;
}

.blog-post {
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.blog-post:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.blog-post h4 {
    color: #FFFFFF;
    margin-bottom: 5px;
}

.blog-date {
    font-style: italic;
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.post-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.read-more-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: underline;
}

.read-more-link:hover {
    color: var(--button-color);
}

.blog-archives {
    margin: 40px 0;
    text-align: left;
}

.archive-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.archive-link {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.archive-link:hover {
    color: var(--heading-color);
    transform: translateX(5px);
}

.blog-newsletter {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--button-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d10048;
}

.blog-more {
    margin-top: 30px;
    font-style: italic;
    text-align: center;
}

/* About Page Styling */
.about-intro {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.2rem;
    border-left: 3px solid var(--heading-color);
    padding-left: 15px;
}

.about-section {
    margin: 40px 0;
    text-align: left;
}

.about-section h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    color: #FFFFFF;
    margin-bottom: 5px;
}

.team-position {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.values-list {
    list-style-type: none;
    padding: 0;
}

.values-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--heading-color);
}

.values-list li strong {
    color: #FFFFFF;
}

/* Tips Styling */
.tips-intro {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.2rem;
    border-left: 3px solid var(--heading-color);
    padding-left: 15px;
}

.tips-categories {
    margin: 30px 0;
}

.tips-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.tips-nav-item {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tips-nav-item.active,
.tips-nav-item:hover {
    background-color: var(--button-color);
    color: white;
}

.tips-section {
    margin: 40px 0;
    text-align: left;
}

.tips-section h2 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.tips-container {
    margin-top: 30px;
    text-align: left;
}

.tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.tip-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.tip-item h3 {
    color: #FFFFFF;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-detail {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-style: italic;
    font-size: 0.9rem;
}

.zodiac-tips {
    margin-top: 20px;
}

.zodiac-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.zodiac-tip {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.zodiac-tip:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.zodiac-tip h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.more-tips-link {
    display: inline-block;
    margin-top: 20px;
    color: #FFFFFF;
    text-decoration: underline;
}

.resources-list {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
}

.resources-list li {
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resources-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.resources-list a {
    color: var(--text-color);
    display: block;
}

.resources-list a:hover {
    color: var(--heading-color);
}

.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
}

.return-button {
    display: inline-block;
    background-color: var(--button-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.return-button:hover {
    background-color: #d10048;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-cards,
    .steps,
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-container {
        display: block;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .services-cards,
    .steps,
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .order-form {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button,
    .submit-button {
        padding: 12px 25px;
    }
    
    .policy-container {
        padding: 25px;
    }
}
