/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b64;
    --text-color: #2D2D2D;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero sectie */
.hero {
    background: var(--text-color);
    min-height: 100vh;
    position: relative;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    height: 100vh;
}

.hero-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    object-position: center 20%;
}

.hero-content {
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--text-color);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: 0;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: #ff6b64;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.checkmark {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 100, 0.3);
}

/* Services sectie */
.services {
    padding: 120px 0;
    background: var(--light-gray);
}

.services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-slider {
    overflow: hidden;
    width: 100%;
}

.services-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    width: fit-content;
}

.service-card {
    flex: 0 0 360px;
    width: 360px;
    margin-right: 0;
    background: white;
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 15px;
}

.card-title {
    font-size: 1.8rem;
    color: var(--text-color);
    padding: 30px 30px 20px;
    margin: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    white-space: normal;
    line-height: 1.2;
    hyphens: auto;
    word-wrap: break-word;
}

.card-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
}

.card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.card-image-link:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.card-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.button-black,
.cta-button,
.submit-button,
.nav-cta {
    background: #ff6b64;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button-black {
    padding: 15px 30px;
    font-size: 0.9rem;
    width: fit-content;
    margin-top: auto;
}

.button-black:hover,
.cta-button:hover,
.submit-button:hover,
.nav-cta:hover {
    transform: translateY(-3px);
    background: #ff5750;
    box-shadow: 0 10px 20px rgba(255, 107, 100, 0.3);
}

/* Responsieve aanpassingen */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .slider-button.prev {
        left: 10px;
    }
    
    .slider-button.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-slider-container {
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    .services-slider {
        overflow: visible;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
        width: 100%;
        transform: none !important;
    }

    .service-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .card-title {
        font-size: 1.5rem;
        min-height: auto;
        padding: 20px 20px 15px;
    }

    .card-content {
        padding: 20px;
        min-height: auto;
    }

    .card-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .slider-button {
        display: none;
    }

    .card-image-link {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .card-image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }

    .services-grid {
        padding: 10px;
        gap: 20px;
    }

    .card-title {
        font-size: 1.3rem;
        padding: 15px 15px 10px;
    }

    .card-content {
        padding: 15px;
    }
}

/* Fix voor zeer kleine schermen */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .card-image-link img {
        height: 200px;
    }
}

/* Voeg deze nieuwe stijlen toe aan het bestaande CSS bestand */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--text-color);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Pas dit aan naar de gewenste hoogte */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta {
    padding: 8px 20px;
    background: var(--primary-color);
    border-radius: 50px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

footer {
    background: var(--light-gray);
    padding: 40px 0;
    margin-top: 100px;
}

.footer-content {
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Verwijder de oude footer stijlen */
.footer-info {
    display: none;
}

/* Contact sectie */
.contact {
    padding: 120px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Form styling */
.required {
    color: var(--primary-color);
    margin-left: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input:required,
.form-group textarea:required {
    border-left: 3px solid var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b64;
}

.submit-button {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Responsieve aanpassingen voor het contactformulier */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
}

.scribble-note {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    transform: rotate(-5deg);
    font-family: 'Caveat', cursive;
    color: #ff6b64;
    margin-bottom: 20px;
    margin-top: -40px;
}

.scribble-arrow {
    width: 60px;
    height: auto;
    margin-top: 5px;
    transform: rotate(0deg);
}

.scribble-note span {
    font-size: 1.4rem;
    white-space: nowrap;
}

/* Responsieve aanpassing voor de scribble */
@media (max-width: 1200px) {
    .scribble-note {
        margin-left: 10px;
        transform: rotate(-10deg) scale(0.9);
    }
}

@media (max-width: 768px) {
    .scribble-note {
        position: relative;
        left: auto;
        margin-left: 0;
        margin-top: -20px;
        margin-bottom: 20px;
        transform: rotate(-5deg) scale(0.8);
    }
}

/* Bestaande media queries updaten en nieuwe toevoegen */

/* Grote schermen */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }
}

/* Tablets en kleinere laptops */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        height: 50vh;
    }

    .hero-image img {
        object-position: top 20%;
    }

    .hero-content {
        padding: 60px 40px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-image-link img {
        height: 250px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* Tablets portrait en grote mobiele telefoons */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .hamburger {
        display: flex;
        margin-left: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--text-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 80px 20px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0.9;
        padding: 10px 20px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        opacity: 1;
        color: var(--primary-color);
    }

    .nav-cta {
        margin-top: 20px;
        padding: 12px 25px;
    }

    /* Hamburger animatie */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Voorkom scrollen wanneer menu open is */
    body.menu-open {
        overflow: hidden;
    }

    /* Zorg dat de content onder de fixed nav komt */
    body {
        padding-top: 60px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact {
        padding: 60px 0;
    }

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

    .footer {
        padding: 60px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Kleine mobiele telefoons */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-image {
        height: 40vh;
    }

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

    .cta-button,
    .submit-button {
        width: 100%;
        justify-content: center;
    }

    .card-title {
        font-size: 1.5rem;
        padding: 20px 20px 15px;
    }

    .card-content {
        padding: 20px;
    }

    .scribble-note {
        transform: rotate(-5deg) scale(0.7);
        margin-top: -30px;
    }

    .hero-image img {
        object-position: top 10%;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix voor zeer kleine schermen */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .card-image-link img {
        height: 200px;
    }
}

.services-outro {
    max-width: 800px;
    margin: 100px auto 0;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.services-outro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.decorative-line {
    margin: 30px auto;
    opacity: 0.6;
}

.decorative-line.rotated {
    transform: rotate(180deg);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .services-outro {
        margin: 60px auto 0;
    }
    
    .services-outro p {
        font-size: 1.1rem;
    }

    .decorative-line svg {
        width: 100px;
    }
}

.contact-header {
    position: relative;
    margin-bottom: 30px;
}

.contact-scribble {
    position: relative;
    margin: 0 auto 20px;
    transform: rotate(-5deg);
    width: fit-content;
}

.contact-scribble .scribble-arrow {
    transform: rotate(0deg);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-scribble {
        transform: rotate(-5deg) scale(0.8);
    }
}

@media (max-width: 480px) {
    .contact-scribble {
        transform: rotate(-5deg) scale(0.7);
    }
}

/* Voeg deze nieuwe stijlen toe voor de actieve menu status */
.nav-links a.active {
    color: #ff6b64;
    padding: 5px 15px;
    background: rgba(255, 107, 100, 0.1);
    border-radius: 20px;
    position: relative;
}

.nav-links a.active:hover {
    opacity: 1;
}

.highlight {
    color: #ff6b64;
    font-weight: 500;
}

/* Zorg dat de highlight ook goed zichtbaar is op donkere achtergrond */
.hero-content .highlight {
    color: #ff8885;
}

.clients {
    padding: 60px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.client-logo:nth-child(even) {
    transform: rotate(2deg);
}

.client-logo:hover {
    transform: rotate(0) scale(1.05);
}

.client-logo img {
    max-width: 50%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.clients .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .clients .section-title {
        font-size: 1.8rem;
    }
}

.card-label {
    background: rgba(255, 107, 100, 0.1);
    color: #ff6b64;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 15px;
    position: absolute;
    top: -10px;
    left: 30px;
    transform: rotate(-2deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* SVG kleur in de decoratieve lijnen */
.decorative-line svg path {
    stroke: #ff6b64;
}

/* Navigatieknoppen styling */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: var(--primary-color);
    color: white;
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}

.about-content {
    padding: 120px 0;
    background: var(--light-gray);
}

.about-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
}

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

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.about-outro {
    text-align: center;
    margin-top: 80px;
    font-size: 1.4rem;
    color: var(--text-color);
}

.about-outro p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
}

/* Specifieke styling voor about pagina hero content */
.about-hero-content {
    padding: 120px 60px 60px;  /* Minder padding aan onderkant */
    max-width: 600px;          /* Maximum breedte toevoegen */
    margin-left: auto;         /* Uitlijnen aan rechterkant */
}

@media (max-width: 768px) {
    .about-hero-content {
        padding: 80px 30px 40px;
    }
}

/* Specifieke styling voor podcast en video pagina hero content */
.content-right {
    padding: 120px 60px 60px;
    max-width: 600px;
    margin-left: auto;
    background: var(--text-color);
}

@media (max-width: 768px) {
    .content-right {
        padding: 80px 30px 40px;
    }
}

/* Hamburger menu styling */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobiele navigatie */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--text-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 80px 20px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0.9;
        padding: 10px 20px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        opacity: 1;
        color: var(--primary-color);
    }

    .nav-cta {
        margin-top: 20px;
        padding: 12px 25px;
    }

    /* Hamburger animatie */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Voorkom scrollen wanneer menu open is */
    body.menu-open {
        overflow: hidden;
    }

    /* Zorg dat de content onder de fixed nav komt */
    body {
        padding-top: 60px;
    }

    .hero {
        padding-top: 80px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

.podcast-hero .hero-image img {
    object-position: center 10%;
}

/* Website Page Specific Styles */
.website-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.website-hero .hero-content {
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.website-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.website-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.website-features {
    padding: 80px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-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 ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.website-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.website-pricing h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price-header {
    margin-bottom: 30px;
}

.price-header h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-features i {
    color: var(--primary-color);
}

.price-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.price-button:hover {
    background: var(--secondary-color);
}

.website-process {
    padding: 80px 0;
    background: white;
}

.website-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.website-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.website-cta h2 {
    margin-bottom: 20px;
}

.website-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .feature-grid,
    .pricing-container,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .website-hero {
        grid-template-columns: 1fr;
    }

    .website-hero .hero-content {
        padding: 60px 20px;
    }

    .feature-grid,
    .pricing-container,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}