* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #3d3d3d;
    background-color: #faf8f3;
    line-height: 1.6;
}

header {
    background-color: #faf8f3;
    border-bottom: 1px solid #f0ebe0;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #b8956a;
    letter-spacing: 1px;
    text-decoration: none;
}

nav a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4a574;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3d3d3d;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #3d3d3d;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    color: #6b6b6b;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 16px;
}

.mission-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mission-section h2 {
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    color: #3d3d3d;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.company-details {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.detail-block {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 500;
}

.team-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.team-member {
    margin-bottom: 24px;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 14px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f3 100%);
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-section h2 {
    margin-top: 0;
}

.cta-button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #c99360;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

footer {
    background: #3d3d3d;
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
}

footer a {
    color: #d4a574;
    text-decoration: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    .values-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }
}