:root {
  /* Page-specific colors for Contact Page - your preferred theme */
  /* These colors define the unique look of your contact page */
  --contact-page-bg: #fafafa; /* A light, clean background for the overall section */
  --contact-form-bg: #ffffff; /* White background for the form container */
  --contact-accent: #B99066; /* Your specific Tan/Light Brown accent for this page */
  --color-bg-light: #F9F6F2;
  --contact-accent-rgb: 185, 144, 102; /* RGB for the tan accent */
  --contact-shadow-light: rgba(0, 0, 0, 0.1); /* Light shadow for form */
  --contact-border-light: #e5e7eb; /* Light border color for form/inputs */
  --contact-text-primary: #333333; /* Dark text color for labels and input text */
  --contact-text-secondary: #666666; /* Secondary text color for description/placeholders */
}
main {
    /* Main tag is a direct child of body, so it needs top padding */
    padding-top: 40px; 
}

#about {
    /* Section has its own padding from style.css. Adjust here if needed */
}

/* Page-specific heading (h2.section-title) styling is in style.css */



.about-text {
    flex: 1 1 500px; /* Text takes available space, min 500px */
    max-width: 60%; /* Limit max width for readability */
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* --- Info List (Education/Hobbies) --- */
.info-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.info-item {
    background-color: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item strong {
    color: var(--heading-color);
    font-weight: 700;
}

/* --- Resume Download Button Styling --- */
.resume-download-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.resume-download-container p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0;
}

/* Specific styling for the secondary button on this page */
.btn.secondary[download] { /* Target the download button specifically */
    border-color: var(--contact-accent);
    color: var(--contact-accent);
}

.btn.secondary[download]:hover {
    background-color: var(--contact-accent);
    border-color: var(--contact-accent);
    color: white;
}

/* --- RESPONSIVE ADJUSTMENTS for About Page --- */
@media (max-width: 992px) {
    #about .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 60px 0;
    }
    #about .section-title {
        font-size: 2rem;
    }
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .about-photo {
        max-width: 250px;
        margin-bottom: 30px;
    }
    .about-text {
        max-width: 100%;
        font-size: 1rem;
    }
    .info-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #about .section-title {
        font-size: 1.8rem;
    }
    .about-text {
        font-size: 0.9rem;
    }
}