* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: #E26E5C;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    color: white;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 .of {
    font-weight: 300;
    font-size: 3rem;
}

.hero-text p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-image {
    width: 100%;
    height: 300px;
    background: #444;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.section {
    padding: 60px 40px;
    margin: 40px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section.ailuropodinae {
    background: #FFF8EC;
}

.section.ailuropodinae .section-title {
    color: #723D47;
}

.section.ailuropodinae .section-text {
    color: #723D47;
}

.section.tremarctos {
    background: linear-gradient(135deg, #7a5555 0%, #654545 100%);
}

.section.ursinae {
    background: linear-gradient(135deg, #e07a7a 0%, #d96c6c 100%);
}

.section-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.section-text {
    color: white;
    font-size: 0.9rem;
    line-height: 1.8;
}

.section-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section-image {
    width: calc(50% - 10px);
    height: 250px;
    background: white;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.section-image:nth-child(2) {
    transform: rotate(2deg);
    margin-top: 20px;
}

.section-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .hero-content,
    .section-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-image {
        width: 100%;
    }
}