* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: white;
    color: #313625;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 1440px;
    height: 1024px;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    overflow: hidden;
}

/* Background decoration */
.bg-decoration {
    position: absolute;
    left: 291px;
    top: 350.62px;
    width: 838px;
    height: 331.074px;
}

.bg-decoration img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    position: absolute;
    left: -59.67%;
    top: -151.02%;
    right: -59.67%;
    bottom: -151.02%;
}

/* Gradient overlays */
.gradient-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 1440px;
    height: 200px;
    background: linear-gradient(180deg, 
        white 0%, 
        rgba(255, 255, 255, 0.5) 66%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.gradient-bottom {
    position: absolute;
    left: 0;
    top: 824px;
    width: 1440px;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 34%, 
        white 100%);
    pointer-events: none;
}

/* Header */
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 29.632px;
    height: 28.844px;
}

.logo-text {
    font-size: 24.83px;
    font-weight: 700;
    letter-spacing: -0.4966px;
    line-height: 1.6;
    color: #313625;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #313625;
    text-decoration: none;
    padding: 0 15px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.sign-in-btn {
    background-color: #d9efc5;
    color: #313625;
    border: none;
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 93px;
    height: 42px;
}

.sign-in-btn:hover {
    background-color: #c9df9a;
}

/* Main content */
.main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 220px;
    z-index: 5;
}

.headline {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.88px;
    text-align: center;
    color: #313625;
    margin-bottom: 80px;
    text-shadow: 0px 0px 71.2px white;
    max-width: 1440px;
}

/* Search container */
.search-container {
    position: relative;
    width: 672px;
}

.search-bar {
    position: relative;
    background-color: white;
    border-radius: 50px;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 5px;
    box-shadow: 0px 0px 18px 0px rgba(147, 154, 141, 0.25);
}

.search-icon-wrapper {
    position: absolute;
    left: 5px;
    width: 42px;
    height: 42px;
    background-color: #e9ede9;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    width: 15px;
    height: 15px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.32px;
    color: #5a6051;
    padding-left: 56px;
    padding-right: 20px;
    background: transparent;
}

.search-input::placeholder {
    color: #5a6051;
}

.search-btn {
    background-color: #598c5b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 93px;
    height: 42px;
}

.search-btn:hover {
    background-color: #497347;
}

/* Floating button */
.floating-btn {
    position: absolute;
    right: 40px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    background-color: #598c5b;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 100;
}

.floating-btn:hover {
    background-color: #497347;
    transform: translateY(-2px);
}

.arrow-icon {
    color: white;
    font-size: 22px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .container {
        width: 100%;
    }
    
    .gradient-top,
    .gradient-bottom {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .headline {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .search-container {
        width: calc(100% - 40px);
        max-width: 672px;
    }
    
    .main-content {
        padding-top: 100px;
    }
}
