.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: #E8F5E8;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #E8F5E8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    background: #fafafa;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-titlesss {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dogs Grid */
.dogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.dog-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.dog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.dog-image {
    width: 100%;
    height: 40vh;
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dog-card:hover .dog-image img {
    transform: scale(1.05);
}



.dog-content {
    padding: 35px;
}

.dog-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.dog-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    color: white;
    flex-shrink: 0;
}

.dog-meta {
    flex: 1;
}

.dog-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 5px;
    line-height: 1.3;
}

.dog-breed {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.dog-description {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-titlesss {
        font-size: 2rem;
    }

    .dogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dog-content {
        padding: 30px 25px;
    }

    .dog-image {
        height: 250px;
    }

    .dog-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .dog-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

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