@media (max-width: 768px) { 
    .cta-container {
        padding: 30px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.press-hero {
    margin-top: 130px;
    padding: 80px 0 50px 0;
    text-align: center;
}

.breadcrumb {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffffa8;
}

.breadcrumb a {
    color: #ffffffa8;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #48b864;
}

.breadcrumb span {
    color: #fff;
    font-weight: 500;
}

.press-hero-title {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.press-hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    color: #ffffffd0;
}


.section-title {
    font-size: 48px;
    text-align: center;
    margin: 100px 0 10px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ffffffa8;
    margin-bottom: 50px;
}

.download-section {
    padding: 50px 0;
}

.download-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 350px;
    max-width: 450px;
}

.download-card:hover {
    transform: translateY(-5px);
    scale: 1.015;
}

.card-icon-wrapper {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(72, 184, 100, 0.15) 0%, rgba(72, 184, 100, 0.05) 100%);
    transition: all 0.3s ease;
}

.download-card:hover .card-icon-wrapper {
    box-shadow: #48b86421 0 5px 15px;
    font-size: 34px;
}

.card-icon {
    font-size: 32px;
    color: #48b864;
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.download-card p {
    font-size: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
    color: #ffffffb3;
}

.download-card .cta-button-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
    margin: 0;
}


.guidelines-section {
    padding-bottom: 100px;
}

.guidelines-content {
    display: block;
}

.guidelines-content.full-width {
    max-width: 100%;
}

.guidelines-text {
    flex: 1 1 100%;
    max-width: 100%;
}

.guidelines-text p {
    font-size: 18px;
    color: #ffffffb3;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.naming-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rule-column {
    flex: 1 1 350px;
    padding: 30px;
    border-radius: 15px;
}

.rule-column h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3 ease;
}

.correct-column h3 {
    color: #48b864;
}

.incorrect-column h3 {
    color: #dc2626;
}

.rule-example {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.1rem;
    justify-content: center;
    text-align: center;
}

.correct {
    background-color: rgba(72, 184, 100, 0.055);
    color: #fff;
    border: 1px solid rgba(72, 184, 100, 0.5);
}

.incorrect {
    background-color: rgba(220, 38, 38, 0.055);
    color: #fff;
    border: 1px solid rgba(220, 38, 38, 0.5);
}

.logo-note {
    font-size: 16px !important;
    text-align: center !important;
    font-style: italic;
    max-width: 800px !important;
    margin: 40px auto 0 auto !important;
} 


.color-palette-section {
    padding-bottom: 150px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.color-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 250px;
    text-align: center;
    margin-top: 2px;
}

.color-card:hover {
    scale: 1.015;
}

.color-swatch {
    width: 80px;
    height: 80px;
    background-color: var(--color);
    border-radius: 50%;
    border: 4px solid #181d1d;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.color-card h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.hex-code {
    font-size: 18px;
    font-family: monospace;
    color: #ffffffa8;
}

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

@media (max-width: 600px) {
    .color-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 950px) {
    .download-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }

    .section-title {
        line-height: normal;
        margin-bottom: 30px;
    }
}