p {
    word-wrap: break-word;
}
main .container {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe5d9 100%);
}

.container_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    opacity: 0.3;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    background: white;
    margin: 40px 0;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSection 0.8s ease forwards;
}

.section strong {
    font-weight: bold;
}

.section:nth-child(1) {
    animation-delay: 0.1s;
}
.section:nth-child(2) {
    animation-delay: 0.2s;
}
.section:nth-child(3) {
    animation-delay: 0.3s;
}
.section:nth-child(4) {
    animation-delay: 0.4s;
}
.section:nth-child(5) {
    animation-delay: 0.5s;
}
.section:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.section-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    padding-bottom: 15px;
    margin-left: 0.5em;
    border-bottom: 3px solid #ff6b35;
}

.highlight-box {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.highlight-box strong {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    line-height: 1.8rem;
}

.points {
    background: #fff5f0;
    padding: 1em;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #ff6b35;
}

.points p {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.points p::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.result-card {
    background: #fff5f0;
    padding: 1em;
    border-radius: 15px;
    text-align: center;
}

.result-card strong {
    display: block;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.mission-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.mission-section .section-number {
    background: #ffffff;
    color: #2c3e50;
}

.mission-section h2 {
    color: white;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    padding-bottom: 15px;
    font-weight: bold;
}

.signature {
    text-align: right;
    font-size: 1.1rem;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    font-weight: bold;
}

.photo-container {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

.photo-container.large {
    margin: 40px 0;
}

.photo-container img {
    width: auto;
    height: 300px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.photo-caption {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
    color: white;
    padding: 12px 20px;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

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

    .section {
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 1.2rem;
        margin-left: 0em;
    }

    .section p {
        font-size: 0.9rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
    .result-card strong {
        font-size: 1rem;
    }
    .mission-section {
        padding: 40px 30px;
    }
    .mission-section h2 {
        font-size: 1.2rem;
    }
    .section-header {
        display: block;
        text-align: center;
    }
}

.rep-signature{
    margin: 2em 0;
    font-weight: 700;
    text-align: right;
    font-size: 1.25em;
    color: #666666;
}
