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

body {
    font-family: 'Lora', serif;
    background-color: #6F0D2C;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.container {
    width: 100%;
    max-width: 900px;
    text-align: left;
}

header {
    margin-bottom: 60px;
    text-align: left;
}

.logo {
    height: 120px;
    width: auto;
}

.tagline {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 35px;
    letter-spacing: -0.3px;
}

.message {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
}

.contact {
    font-size: clamp(14px, 1.8vw, 16px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    font-weight: 400;
}

.contact-link:hover {
    opacity: 0.7;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    body {
        padding: 30px 20px;
        justify-content: center;
    }

    .container {
        max-width: 100%;
    }

    header {
        margin-bottom: 45px;
    }

    .logo {
        height: 100px;
    }

    .tagline {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .message {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .contact {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 25px 20px;
        justify-content: center;
    }

    .logo {
        height: 80px;
    }

    .tagline {
        font-size: 22px;
        line-height: 1.4;
    }

    .message {
        font-size: 15px;
        line-height: 1.6;
    }
}