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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Wix Madefor Display', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2942;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ff6b35;
    color: white;
}

.cookie-btn.accept:hover {
    background: #e55a2e;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #1a2942;
}

/* Header */
.header {
    background: #1a2942;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: unset;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2942 0%, #2c3e50 100%);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Section Styles */
.section {
    padding: 4rem 0;
    background: white;
    margin-bottom: 2rem;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 24px;
  color: #1a2942;
}

/* Introduction */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.intro-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.intro-content p,
.intro-content li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(51, 51, 51, 1);
}

.intro-content li {
  list-style-position: inside;
  margin-bottom: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.content-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2942;
}

.content-item p {
    color: #666;
    line-height: 1.6;
}

/* Investment Types */
.investment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-item {
    background: #1a2942;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    background: #2c3e50;
}

.type-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b35;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2942;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mistake-item {
    background: #fff3f0;
    border: 2px solid #ff6b35;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mistake-item:hover {
    transform: translateY(-3px);
}

.mistake-item h3 {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Amount Content */
.amount-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.amount-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(51, 51, 51, 1);
}

.amount-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.tip h3 {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Risk Benefit Grid */
.risk-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-side, .risk-side {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-side h3 {
    color: #27ae60;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.risk-side h3 {
    color: #c0392b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-side ul, .risk-side ul {
    list-style: none;
    padding: 0;
}

.benefit-side li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-side li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.risk-side li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.risk-side li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #c0392b;
}

/* Conclusion */
.conclusion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(51, 51, 51, 1);
}

/* Reading Section */
.reading-section {
    background: #1a2942;
    color: white;
    padding: 4rem 0;
}

.reading-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.reading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reading-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.reading-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.reading-item h3 {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Registration Form */
.registration-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investment-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a2942;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Wix Madefor Display', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-button {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Wix Madefor Display', sans-serif;
}

.submit-button:hover {
    background: #e55a2e;
}

/* Footer */
.footer {
    background: #1a2942;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.legal-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ff6b35;
}

.footer-copyright {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid,
    .investment-types,
    .steps-container,
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
    
    .risk-benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .reading-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .investment-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .content-item,
    .type-item,
    .step {
        padding: 1.5rem;
    }
    
    .investment-form {
        padding: 1.5rem 1rem;
    }
    
    .reading-item {
        padding: 1.5rem;
    }
}

.intro-content + .intro-content {
  margin-top: 20px;
}

#contacts {
  scroll-margin-top: 40px;
}

.policy {
  margin-top: 80px;
    padding-bottom: 60px;
  padding-top: 40px;
}

.policy h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 150%;
  margin-bottom: 24px;

}

.policy a {
  color: inherit;
  text-decoration: none;
}

@media (max-width:768px){
    .policy h1 {
      font-size: 30px;
      line-height: 1.2;
    }
}