/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #DAE3E4;
    color: #172F44;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 64px 0;
    position: relative;
}

/* Main Content */
.content-left {
    max-width: 756px;
    display: flex;
    flex-direction: column;
    gap: 240px;
    text-align: left;
}

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

.hero-title {
    font-size: 7.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #172F44;
    margin: 0;
    max-width: 756px;
}

.hero-subtitle {
    font-size: 5.875rem;
    font-weight: 700;
    line-height: 1.1;
    color: #172F44;
    margin: 0;
    max-width: 756px;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #172F44;
    max-width: 536px;
    margin: 0;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: flex-start;
    gap: 33px;
    max-width: 381px;
}

.logo-image {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

/* Tagline */
.tagline {
    display: flex;
    align-items: stretch;
    gap: 11px;
    max-width: 228px;
    height: 108px;
}

.tagline-line {
    width: 2px;
    height: 100%;
    background-color: #172F44;
    flex-shrink: 0;
}

.tagline-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #172F44;
    line-height: 1.3;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer Links */
.footer-links {
    font-size: 0.9rem;
    color: #172F44;
    text-align: left;
}

.footer-links a {
    color: #172F44;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* App Preview Section */
.app-preview-section {
    position: relative;
    width: 600px;
    height: 1000px;
    
    transform-origin: center;
    margin-right: -100px;
    margin-top: -50px;
}

.phone-preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Support Page Styles */
.support-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100vh;
    padding: 64px 0;
    position: relative;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
}

.support-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #172F44;
    margin: 0;
}

.support-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #172F44;
    margin: 0;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #172F44;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #172F44;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: #172F44;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #172F44;
    background-color: rgba(255, 255, 255, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #172F44;
    color: #DAE3E4;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #0f1f2e;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.support-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 100px;
}

.support-logo {
    width: 150px;
    height: auto;
}

.support-tagline {
    display: flex;
    align-items: stretch;
    gap: 11px;
    max-width: 228px;
    height: 108px;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: #172F44;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

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

.back-link::before {
    content: "← ";
}

/* Success and Error Messages */
.message {
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 24px;
}

.message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #166534;
}

.message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #991b1b;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .hero-section {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-subtitle {
        font-size: 4.25rem;
    }
    
    .app-preview-section {
        width: 400px;
        height: 800px;
        margin-right: -50px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .support-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .support-content {
        max-width: 100%;
        text-align: center;
    }
    
    .support-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .support-description {
        text-align: center;
    }
    
    .submit-btn {
        align-self: center;
    }
    
    .support-image-section {
        margin-top: 0;
    }
    
    .content-left {
        max-width: 100%;
        gap: 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 3.125rem;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1.25rem;
        text-align: center;
    }
    
    .logo-section {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .tagline {
        max-width: 200px;
        height: 80px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .app-preview-section {
        transform: rotate(-15deg);
        width: 350px;
        height: 700px;
        margin-right: 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .support-section {
        padding: 40px 0;
    }
    
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-description {
        font-size: 1.1rem;
    }
    
    .support-logo {
        width: 120px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2.375rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .tagline {
        max-width: 100%;
        justify-content: center;
        height: 70px;
    }
    
    .app-preview-section {
        transform: rotate(-10deg);
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 80px;
    }
    
    .tagline {
        height: 60px;
    }
    
    .app-preview-section {
        transform: rotate(-5deg);
        width: 220px;
        height: 440px;
    }
}


