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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

header {
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.email-icon {
    font-size: 20px;
    margin-left: 5px;
    display: inline-block;
    min-width: 20px;
}

nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

nav a {
    color: #6B46C1;
    text-decoration: none;
    padding: 18px 25px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    background-color: #FEF3C7;
    border-bottom-color: #F59E0B;
}

.hero {
    background: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero h2 {
    color: #6B46C1;
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 15px;
    color: #555;
}

section {
    padding: 60px 20px;
    background: white;
    margin-bottom: 2px;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

section h2 {
    color: #6B46C1;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.initiative-item, .treaty-subsection, .annex-box  {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #F59E0B;
}

.initiative-item h3,.annex-box h3 {
    color: #5B3A8F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.initiative-item h4, .treaty-subsection h4 {
    color: #5B3A8F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.initiative-item p, .treaty-subsection p,.annex-box p  {
    color: #555;
    line-height: 1.8;
}

.initiative-item ol, .treaty-subsection ol,
.treaty-subsection ul {
    margin: 15px 0;
    padding-left: 20px;
}

.initiative-item ol li, .treaty-subsection ol li,
.treaty-subsection ul l {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.treaty-subsection ul ul {
    margin-top: 10px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.share-buttons p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 20px;
}

.share-buttons a:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.share-twitter { background-color: #1DA1F2; }
.share-facebook { background-color: #4267B2; }
.share-linkedin { background-color: #0A66C2; }
.share-reddit { background-color: #FF4500; }
.share-email { background-color: #666; }
.share-whatsapp { background-color: #25D366; }

.cta-box {
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background: white;
    color: #6B46C1;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #FEF3C7;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.goal-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid #F59E0B;
}

.goal-card h4 {
    color: #6B46C1;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.goal-card p {
    color: #555;
    line-height: 1.7;
}

.treaty-box {
    background: #FEF3C7;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #F59E0B;
    margin-top: 30px;
}

.treaty-box h3 {
    color: #5B3A8F;
    margin-bottom: 15px;
}

.treaty-box p {
    color: #555;
    line-height: 1.8;
}

/* Treaty Page Specific Styles */
.treaty-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.treaty-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.treaty-content strong {
    color: #5B3A8F;
}

.treaty-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.treaty-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-section {
    margin-top: 30px;
}

.article-section h3 {
    color: #6B46C1;
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.formula-box {
    background: #FEF3C7;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #F59E0B;
    margin: 20px 0;
    text-align: center;
    font-size: 1.1rem;
}

.treaty-examples {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 15px 0;
    list-style-position: inside;
}

.treaty-examples li {
    margin-bottom: 12px;
}

.treaty-signature {
    background: #FEF3C7;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #F59E0B;
    margin-top: 30px;
    text-align: center;
}

.treaty-signature p {
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}


.definitions-list {
    list-style: none;
    padding-left: 0;
}

.definitions-list li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.definitions-list li:before {
    content: "•";
    color: #6B46C1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.definitions-list strong {
    color: #5B3A8F;
}

/* Contact Form Styling */
form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

form input[type="email"],
form input[type="text"],
form textarea {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

form input[type="email"]:focus,
form input[type="text"]:focus,
form textarea:focus {
    outline: none;
    border-color: #F59E0B;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button[type="submit"] {
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

form button[type="submit"]:active {
    transform: translateY(0);
}

footer {
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 0;
}

footer p {
    opacity: 0.9;
}

footer a[href^="mailto:"] {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted white;
}

footer a[href^="mailto:"]:hover {
    border-bottom: 2px solid white;
}

/* Thank You Page Styles */
.thank-you-container {
    max-width: 800px;
    margin: 0px auto;
    padding: 0px 40px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #6B46C1 0%, #5B3A8F 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.info-box {
    background: #FEF3C7;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #F59E0B;
}

.info-box p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    nav a {
        padding: 15px 15px;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .initiative-item {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

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

    form {
        padding: 25px;
        margin: 20px;
    }

    .thank-you-container {
        margin: 40px 20px;
        padding: 40px 25px;
    }
    
    .thank-you-container h1 {
        font-size: 2rem;
    }
    
    .thank-you-container p {
        font-size: 1.1rem;
    }

    .treaty-content {
        padding: 20px;
    }

    .treaty-subsection {
        padding: 20px;
    }

    .article-section h3 {
        font-size: 1.3rem;
    }

    .formula-box {
        padding: 15px;
        font-size: 1rem;
    }

    .annex-box {
        padding: 20px;
    }
}