@font-face {
    font-family: 'Mariupol';
    src: url('fonts/Mariupol Regular/Mariupol-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mariupol';
    src: url('fonts/Mariupol Medium/Mariupol-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mariupol';
    src: url('fonts/Mariupol Bold/Mariupol-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mariupol Symbols';
    src: url('fonts/Mariupol Symbols/Mariupol-Symbols.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Mariupol', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}


header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px;
}

.header-btn {
    background-color: #7300FF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header-btn:hover {
    background-color: #7C3AED;
}

.hero-section {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
}

.contact-form-container {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #D1D5DB;
    margin-bottom: 20px;
    font-size: 16px;
    color: #1F2937;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-bottom-color: #7300FF;
}

.contact-form input::placeholder {
    color: #9CA3AF;
}

.submit-btn {
    width: 100%;
    background-color: #7300FF;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7C3AED;
}

.features-section {
    display: grid;
     gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
 

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E9D5FF 0%, #DDD6FE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #7300FF;
    border-radius: 50%;
    z-index: 1;
}

.feature-icon svg {
    position: relative;
    z-index: 2;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.feature p {
    font-size: 16px;
    color: #4B5563;
}

.problems-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.section-dot {
    width: 8px;
    height: 8px;
    background-color: #7300FF;
    border-radius: 50%;
}

.section-label {
    font-size: 14px;
    color: #7300FF;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 40px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background-color: #EFE2FF;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.problem-number {
    font-size: 14px;
    font-weight: 600;
    color: #7300FF;
    margin-bottom: 12px;
}

.problem-text {
    font-size: 16px;
    color: #1F2937;
    line-height: 1.5;
    flex-grow: 1;
}

.problem-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #7300FF;
    opacity: 0.6;
}

.advertising-help-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-flow {
    background-color: #7300FF;
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.process-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid white;
    background-color: transparent;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.process-circle-check {
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step p {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    max-width: 250px;
}

.process-line {
    flex: 1;
    height: 1px;
    background-color: white;
    margin: 0 20px;
    min-width: 40px;
    max-width: 200px;
}

.how-we-work-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.step-card {
    background-color: #F3E8FF;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    color: #1F2937;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-section {
         gap: 30px;
    }

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

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

    header {
        padding: 15px 20px;
    }

    .hero-section,
    .features-section,
    .problems-section,
    .advertising-help-section,
    .how-we-work-section {
        padding: 30px 20px;
    }

    .process-flow {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .process-line {
        width: 2px;
        height: 40px;
        margin: 0;
        min-width: 0;
    }

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

    .hero-footer-section {
        padding: 60px 20px;
    }

    .hero-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-footer-section {
    background: linear-gradient(180deg, #5B21B6 0%, #4C1D95 100%);
    background-image: url('img/footer-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1400px;
    position: relative;
}

.hero-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-footer-text {
    color: white;
}

.hero-footer-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.hero-footer-form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-footer-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-footer-section {
        padding: 40px 20px;
        margin: 40px 20px;
        background-image: url('img/footer-img-mob.png');
    }

    .hero-footer-title {
        font-size: 28px;
    }
}
.images{
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
}


