﻿.agreement-container {
    max-width: 900px;
    margin: 120px auto 40px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-radius: 10px;
    line-height: 1.7;
}

.agreement-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #3498db;
}

    .agreement-header h1 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

.last-updated {
    color: #7f8c8d;
    font-size: 1rem;
    font-style: italic;
}

.agreement-content {
    color: #34495e;
}

.section {
    margin-bottom: 30px;
}

    .section h2 {
        color: #3498db;
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ecf0f1;
        font-weight: 600;
    }

    .section p {
        margin-bottom: 15px;
        font-size: 1.05rem;
        text-align: justify;
    }

.highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 25px 0;
}

    .highlight p {
        text-align: justify;
        margin-bottom: 10px;
    }

.contact-info {
    background: #e8f4fc;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

    .contact-info h3 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .contact-item i {
        color: #3498db;
        font-size: 1.2rem;
        width: 25px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .agreement-container {
        margin: 109px 20px 30px;
        padding: 25px;
    }

    .agreement-header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .agreement-container {
        margin: 104px 15px 25px;
        padding: 20px;
    }

    .agreement-header h1 {
        font-size: 1.8rem;
    }

    .highlight {
        padding: 20px 15px;
    }

    .section p {
        font-size: 0.95rem;
        text-align: left;
    }
}
