* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

button {
    all: unset; /* Resets all inherited and default styles */
    display: inline-block; /* Ensures proper layout behavior */
    cursor: pointer; /* Adds a pointer cursor for better UX */
}


h1 {
    font-size: 3rem;
    color: white;
}
h2 {
    font-size: 2.488rem;
    color: white;
}
h3 {
    font-size: 2.074rem;
    color: white;
}
h4 {
    font-size: 1.728rem;
    color: white;
}
h5 {
    font-size: 1.44rem;
    color: white;
}
h6 {
    font-size: 1.1rem;
    color: white;
}
p {
    font-size: 1rem;
    color: white;
}

body {
    min-height: 100vh;
    background-color: #333333;
    color: #fff;
    line-height: 1.5;
}

/* Page container to center content while letting full-width sections work */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo{
    max-height: 100%;
    height: 20px;
    width: auto;
    cursor: pointer;
    scale: 1;
}

nav {
    width: 100%;
    padding: 12px 0;
    background-color: transparent;
}
.navbar {
    border-radius: 12px;
    display: flex;
    height: 64px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background-color: #FF4136;
    color: white;
}

nav .container {
    display: flex;
    align-items: center;
}
.navbar ul {
    background-color: #FF4136;
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: flex-end;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.navbar a:hover {
    text-decoration: underline;
}

.hero-page {
    background-color: #333333;
    background-size: cover;
    width: 100%;
    padding: 60px 0;
}

.hero-page > .container {
    display: flex;
    gap: 32px;
    align-items: center;
}

.keypoint_section {
    background-color: #222;
    padding: 200px 0;
}
.hero-part1 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 24px;
}

.hero-text {
    /*background-color: #FF4136;*/
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-part2 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}

.hero-part2 img {
    max-width: 100%;
    height: auto;
}
footer {
    width: 100%;
    padding-top: 40px;
    height: fit-content;
    background: linear-gradient(135deg, #FF4136, #ff6a00, #FF4136);
    background-size: 200% 200%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: footerFadeUp 1s ease-out forwards, footerGradientShift 12s ease-in-out infinite;
    animation-delay: 0.3s;
}
.logofooter{
    max-height: 100%;
    height: 150px;
    width: auto;
    scale: 1;
    margin-right: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

.logofooter:hover {
    transform: translateY(-5px) rotate(2deg) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}
.footer-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-nav {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.copyright {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;

}
.first-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 32px;
    list-style: none;
    color: #ffffff;
}

.first-nav li {
    position: relative;
}

.first-nav a {
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.first-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.first-nav a:hover,
.first-nav a:focus {
    transform: translateY(-2px);
}

.first-nav a:hover::after,
.first-nav a:focus::after {
    transform: scaleX(1);
}

@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes buttonRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}
.subscribe-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 20px 0;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.subscribe-form input[type="email"] {
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
    flex: 1;
    min-width: 200px;
}

.subscribe-form button {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    background: #222;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscribe-form button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.subscribe-form button:active::after {
    width: 300px;
    height: 300px;
    animation: buttonRipple 0.6s ease-out;
}

.subscribe-form button:hover {
    background: #333;
    transform: translateY(-1px);
}

.button {
    display: inline-flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    background: #FF4136;
    color: white;
    font-weight: 800;
    transition: all 0.3s ease;

}


.button:hover {
    background: #FF4136;
    opacity: 0.8;
    scale: 1.05;
}

.big_button {
    padding: 18px 32px;
}

.keypoint-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keypoint p {
    opacity: 0.7;
}

.keypoint {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefits-section {
    margin: 48px 0;
    width: 100%;
    padding: 200px 0;
    background-color: #333333;
}

.benefits-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.benefits-section h2 {
    text-align: center;
    color: white;
}

.benefits-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.benefit-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #2d2d2d;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background-color: #3d3d3d;
    border-color: #FF4136;
}


.form-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 80px);
    align-content: center;
    justify-content: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #222;
    border-radius: 12px;
    height: fit-content;
    align-content: center;
    justify-content: center;
}


.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

h1.h1-text {
    text-align: center;
    color: white;
    padding-bottom: 20px;
}