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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    position: relative;
    overflow-x: hidden;
}

/* Hand-drawn style elements */
.hand-drawn {
    filter: url(#roughPaper);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 50px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="15" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="25" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="45" r="1.3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.1" fill="rgba(255,255,255,0.1)"/><circle cx="85" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="80" r="1.4" fill="rgba(255,255,255,0.1)"/><circle cx="55" cy="85" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 6s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #e8ecff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-banner {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* CTA Button */
.cta-button, .read-more-btn, .submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.secondary-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.secondary-button:hover {
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.service-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
    animation: gentle-sway 8s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

/* Blog Section */
.blog {
    background: rgba(255, 255, 255, 0.9);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.blog-icon {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.blog-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
}

.blog-content {
    padding: 0 2rem 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #667eea;
}

.blog-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.stars-img {
    height: 25px;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.newsletter-text p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e8ecff;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 1rem auto 0;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.9);
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.social-media h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.social-link {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-icon {
    font-size: 2rem;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    color: #667eea;
}

.cookie-text p {
    margin: 0;
    color: #bdc3c7;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.accept-all {
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    color: white;
}

.necessary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.custom {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-category span {
    font-weight: normal;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.secondary {
    background: #95a5a6;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-main {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text h3 {
    color: #667eea;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-main-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.1));
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Values Section */
.values {
    background: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-overview-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.service-overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.service-overview-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-overview-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

.thank-you h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.thank-you h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thank-you-message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.thank-you-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Content */
.related-content {
    background: rgba(255, 255, 255, 0.9);
}

.content-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.suggestion-icon {
    margin-bottom: 1.5rem;
}

.suggestion-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
}

.suggestion-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.suggestion-card h3 a:hover {
    color: #667eea;
}

.suggestion-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Blog Article Styles */
.blog-article {
    padding-top: 100px;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb:hover {
    color: white;
}

.article-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article-image {
    text-align: center;
}

.article-main-img {
    width: 150px;
    height: 150px;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-wrapper h2 {
    color: #2c3e50;
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
}

.content-wrapper h3 {
    color: #667eea;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.content-wrapper h4 {
    color: #7f8c8d;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.content-wrapper p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-wrapper ul, .content-wrapper ol {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-highlight {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.content-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.content-highlight h3 {
    color: #2c3e50;
    margin: 0 0 1rem;
}

.content-highlight p {
    margin: 0;
}

/* Related Articles */
.related-articles {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.related-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.1));
}

.related-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card h3 a:hover {
    color: #667eea;
}

/* Legal Pages */
.legal-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: #95a5a6;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-wrapper h2 {
    color: #2c3e50;
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
}

.legal-wrapper h3 {
    color: #667eea;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.legal-wrapper h4 {
    color: #7f8c8d;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.legal-wrapper p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-wrapper ul, .legal-wrapper ol {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #667eea;
}

.effective-date {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ecff;
}

.cookie-settings-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.cookie-settings-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cookie-settings-section p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .about-story,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .content-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .newsletter-content,
    .thank-you-content {
        padding: 0 1rem;
    }
    
    .legal-header h1,
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
}

/* Animation for loading elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.blog-card,
.testimonial-card,
.team-member,
.value-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero,
    .testimonials,
    .contact-cta {
        background: white;
        color: black;
    }
}
