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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    background-attachment: fixed;
}

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

/* Header Styles */
header {
    background: #000000;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.03"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.02"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.03"/><circle cx="70" cy="10" r="1" fill="white" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Main Content */
main {
    padding: 0;
}

section {
    padding: 60px 0;
}

.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23000000" fill-opacity="0.02"><circle cx="7" cy="7" r="1"/><circle cx="27" cy="7" r="1"/><circle cx="47" cy="7" r="1"/><circle cx="7" cy="27" r="1"/><circle cx="27" cy="27" r="1"/><circle cx="47" cy="27" r="1"/><circle cx="7" cy="47" r="1"/><circle cx="27" cy="47" r="1"/><circle cx="47" cy="47" r="1"/></g></g></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.hero h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-text {
    flex: 2;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: #444;
    text-align: left;
    line-height: 1.7;
    font-weight: 400;
}

.story-photo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founders-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border: 3px solid #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.founders-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Before/After Section */
.before-after {
    background: linear-gradient(135deg, rgba(240,242,245,0.8) 0%, rgba(248,249,250,0.9) 100%);
    position: relative;
    overflow: hidden;
}



.before-after h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.image-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.image-container {
    text-align: center;
}

.image-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mailbox-image {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.mailbox-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.mailbox-image.before {
    border: 3px solid #1a1a1a;
}

.mailbox-image.after {
    border: 3px solid #1a1a1a;
}

.arrow {
    font-size: 3.5rem;
    color: #0d0e0d;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

/* Mailbox Options Section */
.mailbox-options {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    padding: 80px 0;
    position: relative;
}

.mailbox-options h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.options-content {
    display: flex;
    justify-content: space-around;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.colors-section, .sizes-section {
    flex: 1;
    text-align: center;
}

.colors-section h3, .sizes-section h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.color-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: block;
}

.color-image:hover {
    transform: translateY(-3px);
}

.color-option span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.size-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.size-list li {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.size-list li:last-child {
    margin-bottom: 0;
}

/* Call to Action */
.call-to-action {
    background: #000000;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.05"/><circle cx="70" cy="70" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
    pointer-events: none;
}

.call-to-action h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.call-to-action p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.cta-button {
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.cta-button p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.phone-number {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    background: white;
    padding: 25px 50px;
    border-radius: 60px;
    border: 4px solid white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.phone-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.6s ease;
}

.phone-number:hover::before {
    left: 100%;
}

.phone-number:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border-color: #1a1a1a;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero h2, .before-after h2, .call-to-action h2 {
        font-size: 2rem;
    }

    .story-content {
        flex-direction: column;
        gap: 30px;
    }

    .story-text p {
        text-align: center;
    }

    .founders-photo {
        width: 200px;
        height: 240px;
    }

    .options-content {
        flex-direction: column;
        gap: 50px;
    }

    .color-options, .size-options {
        gap: 20px;
    }

    .image-row {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .placeholder-image {
        width: 280px;
        height: 180px;
    }

    .phone-number {
        font-size: 2rem;
        padding: 15px 30px;
    }

    section {
        padding: 40px 0;
    }
}
