/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

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

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

.cookie-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b47;
    color: white;
}

.btn-primary:hover {
    background: #e55a41;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5f7a;
}

/* Header */
.header {
    background: #2c5f7a;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
    transition: top 0.3s ease, transform 0.3s ease;
}


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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: inherit;
    text-decoration: unset;
}

.privacy {
  padding-top: 120px;
  padding-bottom: 60px;
  color: rgba(13, 80, 114, 1);

}

.privacy .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy .container a {
  text-decoration: unset;
  color: inherit;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav a:hover {
    color: #ff6b47;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    background: #2c5f7a;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Development Section */
.development {
    padding: 80px 0;
    background: #f8f9fa;
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.development-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 24px;
}

.development-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f7a;
    margin: 32px 0 16px;
}

.development-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.development-text ul {
    list-style: none;
    padding-left: 0;
}

.development-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.development-text li:before {
    content: "•";
    color: #ff6b47;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.development-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c5f7a;
    margin-bottom: 16px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Working Method Section */
.working-method {
    padding: 80px 0;
    background: white;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.method-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 24px;
}

.method-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.method-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.package-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5f7a;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b47;
    margin-bottom: 20px;
}

.package-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-content ul {
    list-style: none;
    padding: 0;
}

.package-content li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.package-content li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-intensive {
    border-top: 4px solid #ff6b47;
}

.package-growth {
    border-top: 4px solid #28a745;
}

.package-premium {
    border-top: 4px solid #6f42c1;
}

.package-basic {
    border-top: 4px solid #17a2b8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 24px;
    text-align: center;
}

.contact > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(13, 80, 114, 1);
    border-radius: 20px;
    padding: 24px;
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #eee;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7a;
}

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

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #2c5f7a;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b47;
}

.footer-rights p {
    font-size: 14px;
}

/* Responsive Design */
/* Mobile Responsive Styles */

@media (max-width: 768px) {
    .cookie-content h2 {
        font-size: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c5f7a;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav.mobile-active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .development-content,
    .about-content,
    .method-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .development-text h2,
    .about-text h2,
    .method-text h2 {
        font-size: 28px;
    }
    
    .benefits h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact h2 {
        font-size: 28px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cookie-content {
        padding: 0 15px;
    }
    
    .cookie-content h2 {
        font-size: 20px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .development-text h2,
    .about-text h2,
    .method-text h2 {
        font-size: 24px;
    }
    
    .benefits h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .package-card h3 {
        font-size: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item h3 {
        font-size: 18px;
    }
    
    .cookie-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-text .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .contact-form .btn {
        padding: 14px;
        font-size: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .hero-text h2 {
        font-size: 24px;
    }
    
    .development-text h2,
    .about-text h2,
    .method-text h2,
    .benefits h2,
    .contact h2 {
        font-size: 20px;
    }
    
    .package-card h3 {
        font-size: 18px;
    }
    
    .benefit-item h3 {
        font-size: 16px;
    }
    
    .cookie-content h2 {
        font-size: 18px;
    }
    
    .package-card {
        padding: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
}