* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.cookie-content {
    background: #D4C4E8;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.adopt-btn {
    background: #7B2D9E;
    color: white;
}

.adopt-btn:hover {
    background: #632478;
}

.resign-btn {
    background: #7B2D9E;
    color: white;
}

.resign-btn:hover {
    background: #632478;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7B2D9E;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8DEFF 0%, #D4C4E8 100%);
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: #7B2D9E;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    max-width: fit-content;
}

.cta-button:hover {
    background: #632478;
    transform: translateY(-2px);
}

.arrow {
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background: #7B2D9E;
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    background: #632478;
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* Consultation Section */
.consultation {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.consultation h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.consultation h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.consultation p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

/* Offers Section */
.offers {
    padding: 60px 0;
    background: linear-gradient(135deg, #E8DEFF 0%, #D4C4E8 100%);
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.offers-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.offers-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.offers-text > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.offer-item {
    margin-bottom: 20px;
}

.offer-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.offers-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background: white;
}

.blog h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.form-section > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-fields input,
.contact-form-fields textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #E8DEFF;
    transition: border-color 0.3s ease;
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
    outline: none;
    border-color: #7B2D9E;
}

.contact-form-fields input::placeholder,
.contact-form-fields textarea::placeholder {
    color: #666;
}

.submit-btn {
    background: #7B2D9E;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #632478;
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.statistics h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    font-size: 14px;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-content {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 24px;
    }
    
    .offers-text h2,
    .blog h2,
    .form-section h2 {
        font-size: 24px;
    }
    
    .consultation h2 {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
}


/* Success Page Styles */
.success-section-new {
    background: white;
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.success-content-new h1 {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.welcome-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.description-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ready-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
}

.success-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.return-button {
    background: #7B2D9E;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.return-button:hover {
    background: #632478;
    transform: translateY(-2px);
}

.arrow-circle {
    width: 60px;
    height: 60px;
    background: #7B2D9E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    background: #632478;
    transform: translateY(-2px);
}

.arrow-down {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.bottom-brand {
    background: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.bottom-brand h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-content {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 24px;
    }
    
    .offers-text h2,
    .blog h2,
    .form-section h2 {
        font-size: 24px;
    }
    
    .consultation h2 {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .success-content h1 {
        font-size: 36px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .next-steps {
        margin: 0 15px;
    }
}