<style>
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    background-color: #d4c5e0;
}

/* Navigation */
.june-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 100;
}

.june-logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: white;
    text-decoration: none;
}

.june-nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.june-nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.june-nav-menu a:hover {
    opacity: 0.7;
}

.june-social-icons {
    display: flex;
    gap: 20px;
}

.june-social-icons a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s;
}

.june-social-icons a:hover {
    opacity: 0.7;
}

/* Hero Section */
.june-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(to bottom, #4a5f8f 0%, #7b6b9a 50%, #b89aaf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.june-hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    padding: 0 20px;
}

.june-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.june-hero-content p {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
}

/* Decorative elements */
.june-star {
    position: absolute;
    color: white;
    opacity: 0.6;
}

.star-1 {
    top: 15%;
    left: 12%;
    font-size: 24px;
}

.star-2 {
    top: 40%;
    right: 15%;
    font-size: 16px;
}

.star-3 {
    bottom: 25%;
    left: 20%;
    font-size: 12px;
}

.june-shooting-star {
    position: absolute;
    top: 30%;
    right: 25%;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(-25deg);
}

.june-tree {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 60px;
    height: 80px;
}

.june-houses {
    position: absolute;
    bottom: 0;
    right: 100px;
}

.june-house {
    position: absolute;
    bottom: 0;
}

.house-1 {
    right: 120px;
    width: 80px;
    height: 100px;
    background: #e8d4c8;
    border-radius: 8px 8px 0 0;
}

.house-1::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #d4bfb3;
}

.house-2 {
    right: 40px;
    width: 70px;
    height: 85px;
    background: #4a5f70;
    border-radius: 8px 8px 0 0;
}

.house-3 {
    right: 0;
    width: 90px;
    height: 120px;
    background: #e8d4c8;
    border-radius: 8px 8px 0 0;
}

/* Contact Section */
.june-contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.june-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.june-contact-text {
    font-size: 24px;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.june-email-link {
    color: #2d2d2d;
    text-decoration: underline;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}

.june-email-link:hover {
    opacity: 0.7;
}

.june-form-note {
    font-size: 14px;
    color: #666;
}

/* Contact Form */
.june-contact-form {
    background: transparent;
}

.june-contact-form h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.june-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.june-form-group {
    margin-bottom: 20px;
}

.june-form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.june-form-group input,
.june-form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #2d2d2d;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.june-form-group input:focus,
.june-form-group textarea:focus {
    outline: none;
    border-bottom-color: #4a5f8f;
}

.june-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.june-submit-btn {
    background: #5a6f8f;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.june-submit-btn:hover {
    background: #4a5f7f;
    transform: translateY(-2px);
}

.june-mail-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .june-contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 30px;
    }

    .june-form-row {
        grid-template-columns: 1fr;
    }

    .june-hero-content h1,
    .june-hero-content p {
        font-size: 36px;
    }

    .june-nav {
        padding: 20px 30px;
    }

    .june-nav-menu {
        gap: 20px;
    }

    .june-houses,
    .june-tree {
        display: none;
    }
}

@media (max-width: 640px) {
    .june-hero-content h1,
    .june-hero-content p {
        font-size: 28px;
    }

    .june-nav-menu {
        font-size: 12px;
        gap: 15px;
    }

    .june-logo {
        font-size: 36px;
    }
}
</style>