/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    line-height: 1.6;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header styles */
.header {
    background: linear-gradient(180deg, #ffde8c 0%, #ffffff 100%);
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header img {
    height: 50px;
    width: auto;
}

.header button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header button:hover {
    background-color: #333;
}

.header button a {
    text-decoration: none;
    color: white;
}

/* Main content styles */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    min-height: 400px;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.experience-text {
    flex: 1;
    max-width: 500px;
    padding: 50px;
}

.content h1 {
    font-size: 48px;
    margin: 0;
    color: #333;
}

.content h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: #333;
}

.content p {
    font-size: 24px;
    margin: 10px 0;
    color: #555;
}

.content img {
    width: 50%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Text highlighting */
.highlight {
    background-color: #ffdee8;
    border-radius: 5px;
    padding: 0 5px;
    font-weight: bold;
}

.highlight-yellow {
    background-color: #ffde8c;
    border-radius: 5px;
    padding: 0 5px;
    font-weight: bold;
}

/* About section */
.about-us {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    margin: 20px 0;
}

.about-us img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.about-us h2 {
    color: #333;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.quote {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #ffde8c;
    margin: 20px 0;
    font-style: italic;
    font-size: 20px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #ffde8c;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin: 10px 0;
    color: #333;
}

.footer a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .header button {
        position: static;
        margin-top: 10px;
    }
    
    .content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
    }
    
    .hero-text,
    .experience-text {
        max-width: 100%;
        padding: 0;
    }
    
    .content img {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }
    
    .content h1 {
        font-size: 36px;
    }
    
    .content h2 {
        font-size: 28px;
    }
    
    .content p {
        font-size: 20px;
    }
    
    .about-us {
        padding: 30px 20px;
    }
    
    .about-us p {
        font-size: 16px;
    }
    
    .quote {
        padding: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 28px;
    }
    
    .content p {
        font-size: 18px;
    }
    
    .header {
        padding: 15px;
    }
    
    .header img {
        height: 40px;
    }
}
