/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f0d3; /* Light golden background */
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Official Page Section */
.official-page {
    background-color: #fff8e1;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.official-page h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.official-page p {
    font-size: 1.2rem;
    color: #555;
}

/* Back Button Styles */
.back-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #d4af37;
    color: white;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 30px;
    border: 2px solid #d4af37;
}

.back-button:hover {
    background-color: #a5782a;
    transform: scale(1.05);
}

/* Profile Section */
.profile {
    text-align: center;
    padding: 60px 0;
    background-color: #fff8e1; /* Soft golden background for profile */
    border-radius: 15px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-header img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid #d4af37; /* Rich golden border */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
}

.profile-header img:hover {
    transform: scale(1.15);
}

.profile-header h1 {
    color: #d4af37;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.profile-header h1:hover {
    color: #a5782a; /* Darker golden hue on hover */
}

.profile-header h2 {
    font-size: 1.8rem;
    color: #333;
    font-style: italic;
    margin-top: 10px;
}

/* Content Styling */
.profile-content {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 40px;
    text-align: left;
    animation: slideIn 1s ease-out;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.profile-content h3 {
    font-size: 2.2rem;
    color: #d4af37;
    text-decoration: underline;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.profile-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.profile-content ul {
    list-style-type: none;
    padding-left: 0;
}

.profile-content ul li {
    font-size: 1.2rem;
    color: #555;
    padding: 12px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.profile-content ul li:hover {
    transform: translateX(10px);
    color: #d4af37;
}

/* Quote Styling */
.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #d4af37;
    margin: 40px 0;
    padding: 20px;
    border-left: 6px solid #d4af37;
    background-color: #fffbe7;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    color: #a5782a;
}
