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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

.disclaimer-banner {
    background: #FEF3C7;
    border-left: 5px solid #F59E0B;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: bold;
    color: #92400E;
}

/* Header */
header {
    background: linear-gradient(135deg, #2E7D87 0%, #236970 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    width: 60px;
    height: 60px;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #F59E0B;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(46, 125, 135, 0.85) 0%, rgba(35, 105, 112, 0.85) 100%),
                url('images/team.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    color: #F59E0B;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #F59E0B;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Values Section */
.values {
    padding: 4rem 2rem;
    background: white;
}

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

.values h2 {
    text-align: center;
    color: #2E7D87;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    border-left: 5px solid #F59E0B;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(46, 125, 135, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2E7D87;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Story Section */
.story {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

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

.story h2 {
    color: #2E7D87;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.story-highlight {
    background: #2E7D87;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #F59E0B;
}

.story-highlight p {
    margin-bottom: 0;
    font-style: italic;
    text-align: center;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background: #2E7D87;
    color: white;
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F59E0B;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #1a5560;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-signature {
    font-style: italic;
    margin-top: 1rem;
    color: #F59E0B;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-svg {
        width: 50px;
        height: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* T-Shirt Section Responsive */
    #shop div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .story p {
        font-size: 1rem;
        text-align: left;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .price-box {
        transform: none !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .values-container > div:first-child {
        padding: 2rem 1rem !important;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .values, .story, .services {
        padding: 2rem 1rem;
    }

    section[style*="padding: 4rem"] {
        padding: 2rem 1rem !important;
    }

    .container {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .price-box .price {
        font-size: 2rem;
    }
}
