/* Base styles */
html {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

p {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 0.2rem solid #667eea;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-0.2rem);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 0.1rem solid #333;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-content p {
    color: #ccc;
    font-size: 1.4rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-accept {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-decline {
    background: transparent;
    color: #ccc;
    border: 0.1rem solid #666;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

/* Header */
.header {
    background: white;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 0.1rem solid #333;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: black;
    text-decoration: none;

}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: #000;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #111;
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.about-text {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: #000;
}

.pricing-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.8rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-card {
    background: #1a1a1a;
    border-radius: 1.5rem;
    /*padding: 3rem;*/
    border: 0.1rem solid #333;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    border-color: #667eea;
    box-shadow: 0 2rem 4rem rgba(102, 126, 234, 0.1);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-header img {
    width: 100%;
    /*height: 8rem;*/
    border-radius: 1rem;
    object-fit: cover;
}

.card-header h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
}

.card-content p {
    font-size: 1.6rem;
    color: #ccc;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.card-price {
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: #111;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.why-content {
    max-width: 80rem;
}

.why-content > p {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.6;
}

/* Webinar Section */
.webinar {
    padding: 8rem 0;
    background: #000;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 5rem;
    line-height: 1.6;
}

.webinar-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.webinar-card {
    background: #1a1a1a;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 0.1rem solid #333;
    transition: all 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-0.5rem);
    border-color: #667eea;
    box-shadow: 0 2rem 4rem rgba(102, 126, 234, 0.1);
}

.webinar-image {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}

.webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webinar-content {
    padding: 3rem;
}

.webinar-content h3 {


    color: #fff;
    margin-bottom: 1rem;

font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 48px */
}

.webinar-date {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.webinar-content p:last-child {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
    padding: 8rem 0;
    background: #111;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-card {
    background: #1a1a1a;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 0.1rem solid #333;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-0.5rem);
    border-color: #667eea;
    box-shadow: 0 2rem 4rem rgba(102, 126, 234, 0.1);
}

.case-image {
    width: 100%;
    height: 25rem;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 3rem;
}

.case-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.case-content p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #000;
}

.contact-form {
    max-width: 60rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem;
    font-size: 1.6rem;
    border: 0.1rem solid #333;
    border-radius: 0.8rem;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

.contact-form .btn-primary {
    width: 100%;
    font-size: 1.8rem;
    padding: 2rem;
}

/* Footer */
.footer {
    background: #111;
    padding: 4rem 0 2rem;
    border-top: 0.1rem solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 1.4rem;
}

/* Success Page */
.success-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 4rem 0;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.success-text {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 10px;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    /*.hero .container {*/
    /*    flex-direction: row;*/
    /*    align-items: center;*/
    /*}*/

    .hero-title {
        font-size: 4.2rem;
    }

    .about .container {
        /*flex-direction: row;*/
        /*align-items: center;*/
    }

    .about-content {
        order: 2;
        margin-left: 4rem;
    }

    .about-image {
        order: 1;
        margin-right: 4rem;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        flex: 1;
        min-width: 30rem;
        max-width: 35rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .webinar-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .webinar-card {
        flex: 1;
        min-width: 35rem;
    }

    .case-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .case-card {
        flex: 1;
        min-width: 35rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.2rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .about-title {
        font-size: 3.6rem;
    }

    .pricing-title {
        font-size: 4.2rem;
    }

    .section-title {
        font-size: 3.6rem;
    }

    .features-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .webinar-card,
    .case-card {
        max-width: 45rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 4rem;
    }

    .hero {
        padding: 12rem 0;
    }

    .about,
    .pricing,
    .why-choose,
    .webinar,
    .case-studies,
    .contact {
        padding: 10rem 0;
    }

    .hero .container,
    .about .container {
        gap: 6rem;
    }

    .pricing-cards {
        gap: 4rem;
    }

    .pricing-card {
        max-width: 38rem;
    }
}
.footer {
    background: #111;
    padding: 6rem 0 3rem;
    border-top: 0.1rem solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-address,
.footer-phone,
.footer-email {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-address p:first-child,
.footer-phone p:first-child,
.footer-email p:first-child {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.footer-address p:last-child,
.footer-phone p:last-child,
.footer-email p:last-child {
    color: #ccc;
    font-size: 1.6rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: left;
    padding-top: 3rem;
    border-top: 0.1rem solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 1.4rem;
}

/* Success Page */
.success-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 4rem 0;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.success-text {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 10px;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .about .container {
        flex-direction: row;
        align-items: center;
    }

    .about-content {
        order: 2;
        margin-left: 4rem;
    }

    .about-image {
        order: 1;
        margin-right: 4rem;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        flex: 1;
        min-width: 30rem;
        max-width: 35rem;
    }

    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .webinar-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .webinar-card {
        flex: 1;
        min-width: 35rem;
    }

    .case-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .case-card {
        flex: 1;
        min-width: 35rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-info {
        flex-direction: row;
        gap: 6rem;
    }

    .footer-links {
        align-items: flex-end;
        flex-shrink: 0;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}
.nav {
    display: flex
;
    justify-content: center;
    align-items: center;
}
