/* Thank You Page Styles */
.thankyou-content {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light-gray), #fff);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thankyou-box {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 5rem;
    color: #28a745;
    animation: scaleIn 0.5s ease-out;
}

.thankyou-box h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thankyou-box .lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.message-details {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

.message-details h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.message-details ul {
    list-style: none;
    padding: 0;
}

.message-details ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.message-details ul li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.additional-info {
    margin: 30px 0;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.additional-info p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-buttons .btn {
    padding: 12px 30px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Media Queries for Thank You Page */
@media (max-width: 768px) {
    .thankyou-box {
        padding: 30px;
        margin: 20px;
    }

    .thankyou-box h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .success-icon i {
        font-size: 4rem;
    }
}
.cookies-content {
    padding: 100px 0 60px;
    background-color: #fff;
}

.cookies-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(to right, var(--light-gray), #fff);
    border-radius: 10px;
}

.cookies-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookies-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.cookies-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookies-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.cookies-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.cookies-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.cookies-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.cookies-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cookies-section ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.browser-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.browser-info {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.browser-info:hover {
    transform: translateY(-5px);
}

.browser-info i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    padding-top: 76px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-section img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-section img:hover {
    transform: translateY(-10px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.price-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.price-box.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-box ul li {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.price-box ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-box img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border: 3px solid var(--secondary-color);
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.testimonial-box h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 2px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.map-iucontainers {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 30px;
}

.map-iucontainers iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color) !important;
    color: #fff;
    padding: 40px 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu ul li {
    display: inline-block;
    margin: 0 15px;
}

.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.3s ease;
    z-index: 1000;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
    padding-right: 20px;
}

.cookie-banner a {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog Styles */
.blog-content {
    padding: 100px 0 60px;
    background-color: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(to right, var(--light-gray), #fff);
    border-radius: 10px;
}

.blog-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.post-meta {
    color: var(--dark-gray);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background-color: var(--light-gray);
    border-radius: 20px;
}

.post-meta i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.featured-image {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.post-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.post-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.post-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 30px 0 20px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.post-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: none;
}

.post-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.post-content ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.exercise-section {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exercise-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exercise-section img {
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.exercise-section img:hover {
    transform: scale(1.03);
}

.exercise-section h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.conclusion {
    background: linear-gradient(135deg, var(--light-gray), #fff);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.author-bio {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.author-bio img {
    width: 120px;
    height: 120px;
    border: 3px solid var(--secondary-color);
    padding: 3px;
}

.author-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.author-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero-section {
    padding: 100px 0 60px;
    background-color: var(--light-gray);
}

.about-hero-section h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-hero-section .lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.our-story-section {
    padding: 80px 0;
    background-color: #fff;
}

.our-story-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.our-story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.methodology-section {
    padding: 80px 0;
}

.methodology-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.methodology-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.methodology-box h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.methodology-box ul {
    list-style: none;
    padding-left: 0;
}

.methodology-box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.methodology-box ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .price-box.featured {
        transform: none;
    }

    .blog-header h1 {
        font-size: 2.2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .feature-box,
    .price-box,
    .testimonial-box {
        margin-bottom: 20px;
    }

    .contact-form {
        margin-top: 30px;
    }

    .footer-menu ul li {
        display: block;
        margin: 10px 0;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .exercise-section {
        padding: 20px;
    }

    .methodology-box {
        height: auto !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .price-box,
    .contact-form {
        padding: 20px;
    }

    .post-content h2 {
        font-size: 1.8rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-box,
.price-box,
.testimonial-box {
    animation: fadeIn 0.6s ease-out forwards;
}

.about-hero-section .row > div:first-child {
    animation: slideInLeft 1s ease-out;
}

.about-hero-section .row > div:last-child {
    animation: slideInRight 1s ease-out;
}

/* Print Styles */
@media print {
    body {
        padding-top: 0;
    }

    .navbar,
    .footer,
    .cookie-banner {
        display: none;
    }

    .iucontainers {
        max-width: 100%;
        width: 100%;
    }

    .hero-section,
    .features-section,
    .pricing-section,
    .testimonials-section,
    .contact-section {
        padding: 20px 0;
    }

    .blog-content {
        padding: 20px;
    }

    .post-meta,
    .featured-image,
    .exercise-section img {
        page-break-inside: avoid;
    }

    .post-content {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Accessibility Styles */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 1001;
}

.skip-link:focus {
    top: 0;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 100px 0 60px;
    background-color: #fff;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(to right, var(--light-gray), #fff);
    border-radius: 10px;
}

.privacy-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    color: var(--dark-gray);
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-section ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.contact-details {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Media Queries for Privacy Page */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 1rem;
    }
}