/* Why Airbrush Page Styles */
.why-airbrush-page {
    background: #f8f9fa;
}


.inner-custom {
    color: #D03995 !important;
    font-family: 'Kodchasan';
}

/* Why Airbrush Page Styles */
.why-airbrush-page {
    background: #f8f9fa;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    margin-top: 3rem;
}

.page-hero[style] .hero-overlay {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero:not([style]) {
    background: linear-gradient(135deg, #e91e63 0%, #2196f3 100%);
}

.page-hero:not([style]) .hero-overlay {
    display: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .container > div {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.page-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 3rem;
    color: #d03995;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 1);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    margin: 0;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.content-section {
    padding: 80px 0;
}

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

.page-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.page-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 15px;
}

.page-content h3 {
    color: #2196f3;
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.page-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.page-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.page-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.advantages-section,
.occasions-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-section h2,
.cta-section h3 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-section a {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.cta-section a:hover {
    background: #ad1457;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero {
        padding: 0 5%;
    }
    
    .page-hero[style] .hero-overlay {
        left: 5%;
        width: 90%;
    }
    
    .page-title {
        font-size: 3rem;
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
        padding: 0 2.5%;
        margin-top: 2rem;
    }
    
    .page-hero[style] .hero-overlay {
        left: 2.5%;
        width: 95%;
        border-radius: 10px;
    }
    
    .page-title {
        font-size: 2.2rem;
        padding: 15px 25px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .page-content,
    .advantages-section,
    .occasions-section,
    .cta-section {
        padding: 30px;
        margin: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .page-content,
    .advantages-section,
    .occasions-section,
    .cta-section {
        padding: 25px;
    }
}