/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333333;
    background-color: #ffffff;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #750014;
    color: #ffffff;
    padding: 40px 0 60px 0;
    text-align: center;
}

.header-contact-top {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.subheader {
    font-size: 1.6rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 10px 10px 0px #750014;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #750014;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Approach Section */
.approach-section {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.approach-section h2 {
    color: #750014;
    margin-bottom: 30px;
    text-align: center;
}

.approach-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.approach-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.approach-list li::before {
    content: "■";
    color: #750014;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 5px;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
}

.consultation-box {
    border: 3px solid #750014;
    padding: 50px;
    text-align: center;
    background-color: #ffffff;
}

.consultation-box h2 {
    color: #750014;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.final-contact a {
    color: #750014;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    background: #1a1a1a;
    color: #cccccc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subheader { font-size: 1.2rem; }
    .about-flex { text-align: center; justify-content: center; }
}