/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Main Title - Playfair Display */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: #000000;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.02em;
}

/* Text Blocks - Fustat */
.text-block {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.first-text {
    margin-top: 80px;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.second-text {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.second-text strong {
    font-weight: 700;
}

/* Contact Email - Fustat Bold */
.contact-email {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #000000;
    margin-top: clamp(3rem, 7vw, 5rem);
}

.contact-email strong {
    font-weight: 700;
}

.contact-email a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-email a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.contact-email a:visited {
    color: #000000;
}

/* Content Wrapper */
.content-wrapper {
    padding: 2rem 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .main-title {
        margin-bottom: 2rem;
    }
    
    .text-block {
        margin-bottom: 2rem;
    }
    
    .first-text {
        margin-bottom: 2.5rem;
    }
    
    .second-text {
        margin-bottom: 2.5rem;
    }
    
    .contact-email {
        margin-top: 3rem;
    }
}

@media (min-width: 1200px) {
    .content-wrapper {
        padding: 3rem 2rem;
    }
}
