/* 
Main Color Palette:
- Deep Purple: #2C003E
- Azure Blue: #00D4FF
- Peach: #FFD3B4
- Silver-white: #F8F9FA
- Accent Yellow: #F9F871
*/

/* ------------- Reset & Base Styles ------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F9FA;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: #2C003E;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

a:hover {
    color: #00D4FF;
}

ul {
    list-style: none;
}

/* ------------- Typography ------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #2C003E;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #00D4FF;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ------------- Buttons ------------- */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: #2C003E;
    color: #fff;
    box-shadow: 0 5px 15px rgba(44, 0, 62, 0.2);
}

.btn-primary:hover {
    background: #00D4FF;
    color: #2C003E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2C003E;
    border: 2px solid #2C003E;
}

.btn-secondary:hover {
    background: #2C003E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 0, 62, 0.2);
}

/* ------------- Header & Navigation ------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 249, 250, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2C003E;
}

.logo svg {
    margin-right: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 5;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #2C003E;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00D4FF;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
    z-index: 3;
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

/* ------------- Hero Section ------------- */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(44, 0, 62, 0.95) 0%, rgba(72, 26, 106, 0.95) 100%);
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1,
.hero-content p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.hero-buttons .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.hero-buttons .btn-secondary:hover {
    background: #fff;
    color: #2C003E;
}

.hero-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ------------- About Section ------------- */
.about-section {
    background-color: #F8F9FA;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.about-text p {
    color: #333;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2C003E;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #2C003E, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    object-fit: cover;
}

/* ------------- Services Section ------------- */
.services-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #00D4FF;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.icon {
    font-size: 30px;
    position: relative;
    z-index: 3;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features {
    margin-top: 20px;
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.service-features li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}

.service-features li::before {
    content: '•';
    color: #00D4FF;
    position: absolute;
    left: 0;
    z-index: 2;
}

/* ------------- Why Us Section ------------- */
.why-us-section {
    background-color: #F8F9FA;
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-us-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: #F9F871;
    color: #2C003E;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.why-us-card h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* ------------- Testimonials Section ------------- */
.testimonials-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #F8F9FA;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    position: relative;
    z-index: 2;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ------------- Stats Section ------------- */
.stats-section {
    background: linear-gradient(135deg, rgba(44, 0, 62, 0.9) 0%, rgba(72, 26, 106, 0.9) 100%);
    color: #fff;
    position: relative;
    z-index: 1;
}

.stats-section .section-header h2,
.stats-section .section-header p {
    color: #fff;
    position: relative;
    z-index: 2;
}

.stats-section .section-header h2::after {
    background: #F9F871;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F9F871;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ------------- Contact Section ------------- */
.contact-section {
    background-color: #F8F9FA;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2C003E;
}

.contact-details {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.contact-details li {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00D4FF;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* ------------- FAQ Section ------------- */
.faq-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    background: #F8F9FA;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    z-index: 2;
}

.faq-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    z-index: 3;
}

.faq-arrow::before,
.faq-arrow::after {
    content: '';
    position: absolute;
    background: #2C003E;
    top: 50%;
    left: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.faq-arrow::before {
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-arrow::after {
    width: 3px;
    height: 100%;
    transform: translateX(8px) translateY(-50%);
}

.faq-toggle:checked ~ .faq-question {
    background: #2C003E;
    color: #fff;
}

.faq-toggle:checked ~ .faq-question .faq-arrow::before,
.faq-toggle:checked ~ .faq-question .faq-arrow::after {
    background: #fff;
}

.faq-toggle:checked ~ .faq-question .faq-arrow::after {
    transform: translateX(8px) translateY(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* ------------- Footer ------------- */
.site-footer {
    background: #2C003E;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-about p {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-about .logo {
    color: #fff;
}

.footer-contact ul,
.footer-links ul,
.footer-legal ul {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-contact ul li,
.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.footer-contact ul li strong {
    color: #00D4FF;
}

.site-footer h3 {
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    z-index: 2;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00D4FF;
    z-index: 2;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #00D4FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ------------- Cookie Popup ------------- */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(44, 0, 62, 0.95);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1002;
}

.cookie-content p {
    margin-bottom: 0;
    padding-right: 30px;
}

#accept-cookies {
    background: #F9F871;
    color: #2C003E;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1003;
}

#accept-cookies:hover {
    background: #FFD3B4;
    transform: translateY(-3px);
}

/* ------------- Animations ------------- */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ------------- Policy Pages Styles ------------- */
.policy-page {
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.policy-container h1 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.policy-container h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.policy-container ul,
.policy-container ol {
    margin: 20px 0;
    padding-left: 25px;
    position: relative;
    z-index: 2;
}

.policy-container ul li,
.policy-container ol li {
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-date {
    text-align: right;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* ------------- Thank You Page ------------- */
.thank-you-page {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: #F9F871;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    position: relative;
    z-index: 2;
}

.thank-you-container h1 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.thank-you-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* ------------- Responsive Styles ------------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .menu-icon {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 249, 250, 0.98);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 999;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    section {
        padding: 50px 0;
    }
} 