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

h1, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: #222;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

.btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004499;
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #0066cc;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #0066cc;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0066cc;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Brands Overview Section */
.brands-overview {
    padding: 80px 0;
}

.brands-overview h1 {
    text-align: center;
    margin-bottom: 50px;
}

.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.brand-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.brand-image.pawfit {
    background-color: #FF6B6B;
    /* Placeholder color until actual image is available */
}

.brand-image.tractive {
    background-color: #4ECDC4;
    /* Placeholder color until actual image is available */
}

.brand-image.pitpat {
    background-color: #FFD166;
    /* Placeholder color until actual image is available */
}

.brand-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.brand-card p {
    padding: 0 20px 20px;
    color: #666;
}

.brand-card .btn {
    margin: 0 20px 20px;
}

/* Innovation Section */
.innovation {
    background-color: #f0f7ff;
    padding: 80px 0;
}

.innovation h1 {
    text-align: center;
    margin-bottom: 30px;
}

.innovation p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
}

.comparison h1 {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

table th, table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: #0066cc;
    color: white;
    font-weight: 600;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background-color: #f5f5f5;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Brand Detail Pages */
.brand-header {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.brand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.brand-header .container {
    position: relative;
    z-index: 1;
}

.brand-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.brand-header p {
    font-size: 1.2rem;
    max-width: 800px;
}

.brand-content {
    padding: 80px 0;
}

.brand-section {
    margin-bottom: 60px;
}

.brand-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0066cc;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #0066cc;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #0066cc;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: #0066cc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

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

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .brand-header h1 {
        font-size: 2.2rem;
    }
}