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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content i {
    font-size: 1.5rem;
    color: #f7fafc;
    margin-right: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept-all {
    background: #48bb78;
    color: white;
}

.btn-accept-all:hover {
    background: #38a169;
}

.btn-necessary {
    background: #ed8936;
    color: white;
}

.btn-necessary:hover {
    background: #dd6b20;
}

.btn-custom {
    background: #667eea;
    color: white;
}

.btn-custom:hover {
    background: #5a67d8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.modal-content h3 {
    margin-bottom: 20px;
    color: #2d3748;
}

.modal-content label {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
}

.modal-content input[type="checkbox"] {
    margin-right: 10px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-save {
    background: #48bb78;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-cancel {
    background: #a0aec0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Navigation Styles */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #553c9a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo i {
    color: #f59e0b;
}

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

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #553c9a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4a5568;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Button Styles */
.btn-primary {
    background: #553c9a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #44337a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 60, 154, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #553c9a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #553c9a;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #553c9a;
    color: white;
    transform: translateY(-2px);
}

.btn-learn-more {
    background: #f59e0b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-learn-more:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #f59e0b;
}

/* About Preview Section */
.about-preview {
    background: #f7fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-icon {
    font-size: 3rem;
    color: #553c9a;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #553c9a;
    margin-bottom: 5px;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

/* Services Preview Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #553c9a;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: #f7fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: #a0aec0;
}

.testimonial-author strong {
    color: #1a202c;
    display: block;
}

.testimonial-author span {
    color: #4a5568;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #f59e0b;
}

/* Quick Contact Section */
.quick-contact {
    background: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: #1a202c;
    margin-bottom: 5px;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

.quick-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-form h3 {
    margin-bottom: 25px;
    color: #1a202c;
    text-align: center;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: #553c9a;
}

.quick-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Blog Preview Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.blog-icon {
    font-size: 2.5rem;
    color: #553c9a;
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.blog-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #553c9a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #44337a;
}

.blog-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #f7fafc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #f7fafc;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #a0aec0;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f59e0b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 25px 20px;
    }

    .quick-form {
        padding: 30px 20px;
    }

    .about-stats {
        flex-direction: column;
    }
}

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

.service-card,
.testimonial-card,
.blog-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        padding: 50px 0;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    color: #f59e0b;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-content h2 i {
    color: #553c9a;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.7;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.story-icon-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.story-icon-item:hover {
    transform: translateY(-5px);
}

.story-icon-item i {
    font-size: 2.5rem;
    color: #553c9a;
    margin-bottom: 15px;
}

.story-icon-item span {
    display: block;
    font-weight: 600;
    color: #1a202c;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f7fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.mission-card p,
.mission-card ul {
    color: #4a5568;
    line-height: 1.6;
}

.mission-card ul {
    text-align: left;
    margin-top: 15px;
}

.mission-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mission-card ul li::before {
    content: "•";
    color: #553c9a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.member-title {
    color: #553c9a;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.member-credentials span {
    background: #f7fafc;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-credentials i {
    color: #f59e0b;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: #f7fafc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 3rem;
    color: #553c9a;
    margin-bottom: 20px;
}

.achievement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.achievement-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: #553c9a;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
}

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

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-detailed:hover {
    transform: translateY(-5px);
}

.service-header {
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h3 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-header i {
    font-size: 2.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
}

.service-description {
    padding: 40px;
}

.service-description > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features h4 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-features li i {
    color: #48bb78;
    font-size: 1.1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
}

.detail-item i {
    color: #553c9a;
    width: 20px;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #f7fafc;
}

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

.additional-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.additional-item:hover {
    transform: translateY(-5px);
}

.additional-item i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.additional-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.additional-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.additional-price {
    color: #553c9a;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Booking Process */
.booking-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #553c9a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Services Page CTA Section */
section.services-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

section.services-cta::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="50" cy="50" r="1" fill="white" opacity="0.03"/></svg>') repeat;
    background-size: 30px 30px;
    animation: sparkle 25s infinite linear;
}

@keyframes sparkle {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

section.services-cta .cta-content {
    position: relative;
    z-index: 2;
}

section.services-cta .cta-content h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

section.services-cta .cta-content h2 i {
    color: #f59e0b;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

section.services-cta .cta-content p {
    color: #cbd5e0;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}

/* Premium Form Styles */
.premium-form {
    max-width: 700px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #553c9a, #f59e0b, #553c9a);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(85, 60, 154, 0.1);
}

.form-header i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 10px;
    display: block;
}

.form-header span {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    letter-spacing: -0.01em;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.input-group,
.select-group,
.textarea-group {
    position: relative;
}

.input-icon,
.select-icon,
.textarea-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #553c9a;
    z-index: 2;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 2px solid rgba(85, 60, 154, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-family: inherit;
    color: #2d3748;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    outline: none;
    border-color: #553c9a;
    background: white;
    box-shadow: 0 0 0 4px rgba(85, 60, 154, 0.1);
    transform: translateY(-2px);
}

.premium-input:focus + .input-border,
.premium-select:focus + .select-border,
.premium-textarea:focus + .textarea-border {
    transform: scaleX(1);
}

.premium-input:focus ~ .input-icon,
.premium-select:focus ~ .select-icon,
.premium-textarea:focus ~ .textarea-icon {
    color: #f59e0b;
    transform: translateY(-50%) scale(1.1);
}

.premium-textarea:focus ~ .textarea-icon {
    transform: scale(1.1);
}

.input-border,
.select-border,
.textarea-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #553c9a, #f59e0b);
    border-radius: 0 0 15px 15px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.premium-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 20px;
}

.select-group {
    margin-bottom: 30px;
}

.textarea-group {
    margin-bottom: 40px;
}

.premium-submit {
    width: 100%;
    padding: 22px 30px;
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(85, 60, 154, 0.3);
}

.premium-submit::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;
}

.premium-submit:hover::before {
    left: 100%;
}

.premium-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(85, 60, 154, 0.4);
}

.premium-submit:active {
    transform: translateY(-1px);
}

.btn-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.premium-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* Premium Input Placeholders */
.premium-input::placeholder,
.premium-select option:first-child,
.premium-textarea::placeholder {
    color: #718096;
    opacity: 1;
}

/* Enhanced Select Styling */
.premium-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23553c9a"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    cursor: pointer;
}

.premium-select option {
    padding: 10px;
    background: white;
    color: #2d3748;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .premium-form {
        margin: 30px 20px 0;
        padding: 40px 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-input,
    .premium-select,
    .premium-textarea {
        padding: 16px 16px 16px 50px;
    }
    
    .premium-submit {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
}

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

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details h2 i {
    color: #f59e0b;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.info-item i {
    font-size: 1.5rem;
    color: #553c9a;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: #1a202c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Contact Map */
.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f7fafc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-intro h2 i {
    color: #f59e0b;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #553c9a;
    box-shadow: 0 0 0 3px rgba(85, 60, 154, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #553c9a;
    border-color: #553c9a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: #f7fafc;
    border-radius: 15px;
    border-left: 5px solid #553c9a;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: #f59e0b;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Alternative Contact */
.alt-contact {
    padding: 80px 0;
    background: #f7fafc;
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.alt-method {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.alt-method:hover {
    transform: translateY(-5px);
}

.alt-method i {
    font-size: 3rem;
    color: #553c9a;
    margin-bottom: 25px;
}

.alt-method h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.alt-method p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    margin-top: 70px;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.thank-you-icon i {
    font-size: 4rem;
    color: white;
}

.thank-you-content h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 50px;
}

.thank-you-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: left;
}

.thank-you-details p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.step {
    text-align: center;
    padding: 25px 20px;
    background: #f7fafc;
    border-radius: 15px;
}

.step i {
    font-size: 2.5rem;
    color: #553c9a;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.step p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-reminder {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
}

.contact-reminder h3 {
    color: #1a202c;
    margin-bottom: 15px;
    text-align: center;
}

.contact-reminder p {
    color: #4a5568;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-reminder i {
    color: #f59e0b;
}

/* Social Follow */
.social-follow {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.social-follow h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.social-follow p {
    color: #4a5568;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.social-links-large {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    background: #553c9a;
    color: white;
}

.social-link i {
    font-size: 2.5rem;
    color: #553c9a;
    transition: color 0.3s;
}

.social-link:hover i {
    color: white;
}

.social-link span {
    font-weight: 600;
    color: #1a202c;
    transition: color 0.3s;
}

.social-link:hover span {
    color: white;
}

/* Blog Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

.article-card:hover {
    transform: translateY(-10px);
}

.article-icon {
    padding: 30px 30px 20px;
    text-align: center;
}

.article-icon i {
    font-size: 3rem;
    color: #553c9a;
}

.article-content {
    padding: 0 30px 30px;
}

.article-category {
    background: #f59e0b;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.3;
}

.article-content h3 a:hover {
    color: #553c9a;
}

.article-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #f59e0b;
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    color: white;
}

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

.featured-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-weight: 600;
}

.featured-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.newsletter-content h2 i {
    color: #f59e0b;
}

.newsletter-content p {
    color: #4a5568;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #553c9a;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 50px;
    white-space: nowrap;
}

.newsletter-privacy {
    color: #718096;
    font-size: 0.9rem;
}

/* Article Single Page Styles */
.article-single {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: white;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #718096;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #553c9a;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
}

.article-header h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #f7fafc;
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info i {
    font-size: 2.5rem;
    color: #553c9a;
}

.author-info strong {
    display: block;
    color: #1a202c;
}

.author-info span {
    color: #4a5568;
    font-size: 0.9rem;
}

.article-stats {
    display: flex;
    gap: 20px;
    color: #718096;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-stats i {
    color: #f59e0b;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

/* Stylish Article Elements */
.article-intro {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: #1a202c;
    margin: 40px 0 50px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
}

.article-intro::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    display: block;
    margin: 25px auto 0;
    border-radius: 2px;
}

.article-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    color: #553c9a;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 20px;
    border-left: 5px solid #f59e0b;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    color: #f59e0b;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.simple-text {
    margin: 40px 0;
}

.simple-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    color: #2d3748;
}

.simple-text p:last-child {
    margin-bottom: 0;
}

.key-principle {
    background: linear-gradient(135deg, #553c9a, #44337a);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.key-principle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.key-principle h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    color: white !important;
}

.key-principle p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin: 0;
    color: white !important;
}

.highlight-box {
    background: #f59e0b;
    color: white;
    padding: 35px 40px;
    border-radius: 20px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.highlight-box p {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.conclusion-text {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    color: #553c9a;
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    position: relative;
}

.conclusion-text::before,
.conclusion-text::after {
    content: '◆';
    color: #f59e0b;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.conclusion-text::before {
    left: -40px;
}

.conclusion-text::after {
    right: -40px;
}

/* Enhanced Article Conclusion */
.article-conclusion {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 50px 40px;
    border-radius: 25px;
    margin: 60px 0;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #553c9a, #f59e0b);
}

.article-conclusion p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}

/* Enhanced CTA */
.article-cta {
    background: linear-gradient(135deg, #553c9a, #f59e0b);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(85, 60, 154, 0.3);
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: drift 30s infinite linear;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, -20px); }
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    color: white !important;
}

.article-cta p {
    margin-bottom: 30px;
    opacity: 0.95;
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    color: white !important;
}

.article-cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 40px;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.article-cta .btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.6);
}

.content-icon {
    text-align: center;
    margin-bottom: 40px;
}

.content-icon i {
    font-size: 4rem;
    color: #553c9a;
    background: #f7fafc;
    padding: 30px;
    border-radius: 50%;
}

.article-content h2:not(.key-principle h2) {
    font-size: 1.8rem;
    color: #1a202c;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.article-content h2 i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.article-content h3:not(.article-cta h3) {
    font-size: 1.4rem;
    color: #1a202c;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.article-content ul li::marker {
    color: #553c9a;
}

.article-conclusion {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    border-left: 5px solid #553c9a;
}

.article-conclusion h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #1a202c;
}

.article-conclusion h3 i {
    color: #f59e0b;
}


/* Article Footer */
.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.article-share {
    margin-bottom: 40px;
}

.article-share h4 {
    color: #1a202c;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.related-articles h4 {
    color: #1a202c;
    margin-bottom: 20px;
}

.related-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #1a202c;
    transition: background-color 0.3s, transform 0.3s;
}

.related-link:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.related-link i {
    color: #553c9a;
    font-size: 1.2rem;
}

/* Legal Page Styles */
.legal-page {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.legal-content h1 i {
    color: #f59e0b;
}

.last-updated {
    text-align: center;
    color: #718096;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: #553c9a;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin: 30px 0 15px;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .testimonial-card,
    .blog-card {
        border: 2px solid #1a202c;
    }
    
    .btn-primary {
        border: 2px solid #ffffff;
    }
}