/* Основные цвета и переменные */
:root {
    --primary: #1ebeb4;
    --primary-dark: #18a69d;
    --primary-light: #e6f8f7;
    --white: #fff;
    --gray: #f7f7f7;
    --dark: #383a3f;
    --text: #4c4e52;
    --light-gray: #e9e9e9;
    --border-radius: 8px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  /* Базовые стили */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }
  
  h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.8rem auto 0;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  /* Кнопки */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
  }
  
  .btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  /* Header */
  header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 0;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark);
    text-decoration: none;
  }
  
  .logo span {
    color: var(--primary);
  }
  
  nav ul {
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
  }
  
  nav ul li a:hover {
    color: var(--primary);
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .phone {
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .phone:hover {
    color: var(--primary);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    background-image: linear-gradient(#e6f8f7aa, #c9fffc), url('../images/h1.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;

  }

  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Переваги у цифрах */
  .benefits-numbers {
    background-color: var(--white);
    padding: 3rem 0;
  }
  
  .benefits-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .benefit-item {
    text-align: center;
    max-width: 250px;
  }
  
  .benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .benefit-text {
    font-size: 1.1rem;
  }
  
  /* Сравнительная таблица */
  .comparison {
    background-color: var(--gray);
  }
  
  .comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
  }
  
  th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
  }
  
  tr:last-child td {
    border-bottom: none;
  }
  
  tr:nth-child(even) {
    background-color: var(--gray);
  }
  
  /* About Section */
  .about {
    background-color: var(--white);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-features {
    margin-top: 1.5rem;
  }
  
  .about-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
  }
  
  .about-features li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
  }
  
  /* Features */
  .features {
    background-color: var(--gray);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon i {
    font-size: 2rem;
    color: var(--primary);
  }
  
  /* Functionality */
  .functionality {
    background-color: var(--white);
  }
  
  .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  
  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .tab-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .tab-image {
    flex: 1;
    min-width: 300px;
  }
  
  .tab-description {
    flex: 1;
    min-width: 300px;
  }
  
  .tab-description ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
  }
  
  .tab-description ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
  }
  
  /* Integration */
  .integration {
    background-color: var(--gray);
    text-align: center;
  }

  .integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
  }
  
  .integration-logo {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Pricing */
  .pricing {
    background-color: var(--white);
  }
  
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card.popular {
    border-color: var(--primary);
    z-index: 1;
    transform: scale(1.05);
  }
  
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1rem 0;
  }
  
  .price span {
    font-size: 1rem;
    color: var(--text);
  }
  
  .pricing-features {
    margin: 2rem 0;
    text-align: left;
  }
  
  .pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
  }
  
  .pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: var(--gray);
  }
  
  .testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 300px;
  }
  
  .testimonial-content {
    margin-bottom: 2rem;
  }
  
  .stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-name {
    font-weight: 600;
    color: var(--dark);
  }
  
  .client-position {
    font-size: 0.9rem;
    color: var(--text);
  }
  
  /* FAQ */
  .faq {
    background-color: var(--white);
  }
  
  .accordion {
    max-width: 800px;
    margin: 3rem auto 0;
  }
  
  .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .accordion-header {
    background-color: var(--white);
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
  }
  
  .accordion-header:hover {
    background-color: var(--primary-light);
  }
  
  .accordion-content {
    background-color: var(--gray);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-item.active .accordion-content {
    padding: 1.2rem;
    max-height: 200px;
  }
  
  .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
  }
  
  /* Demo */
  .demo {
    background-color: var(--gray);
  }
  
  .demo-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .demo-option {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .demo-option:hover {
    transform: translateY(-5px);
  }
  
  .demo-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  /* Contact */
  .contact {
    background-color: var(--white);
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .contact-form {
    flex: 1.5;
    min-width: 300px;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .form-group label.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .contact-info-block {
    flex: 1;
    min-width: 300px;
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: var(--border-radius);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  /* CTA */
  .cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
  }
  
  .cta h2 {
    color: var(--white);
  }
  
  .cta h2:after {
    background-color: var(--white);
  }
  
  .cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  
  .cta .btn {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
  }
  
  .cta .btn:hover {
    background-color: transparent;
    color: var(--white);
  }
  
  /* Footer */
  footer {
    background-color: var(--dark);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .footer-column h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    margin-top: 0.6rem;
  }
  
  .footer-column ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-column ul li a {
    color: var(--light-gray);
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    color: var(--primary);
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }
/* Стили для экранов больше 2300px */
@media (min-width: 2300px) {
  
  /* Увеличиваем максимальную ширину контейнера */
  .container {
    max-width: 1600px;
    padding: 0 2rem;
  }
  
  /* Увеличиваем отступы секций */
  .section {
    padding: 7rem 0;
  }
  
  /* Увеличиваем размеры заголовков */
  h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  
  h2:after {
    width: 80px;
    height: 5px;
    margin: 1rem auto 0;
  }
  
  h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Увеличиваем размер основного текста */
  body {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  /* Увеличиваем кнопки */
  .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Header */
  header {
    padding: 1.5rem 0;
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  nav ul {
    gap: 2.5rem;
  }
  
  nav ul li a {
    font-size: 1.1rem;
  }
  
  .contact-info {
    gap: 2rem;
  }
  
  .phone {
    font-size: 1.1rem;
  }
  
  /* Hero Section */
  .hero {
    height: 900px;
    padding: 7rem 0;
  }
  
  .hero-content {
    max-width: 900px;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-buttons {
    gap: 1.5rem;
  }
  
  /* Benefits Numbers */
  .benefits-numbers {
    padding: 4rem 0;
  }
  
  .benefits-wrapper {
    gap: 3rem;
  }
  
  .benefit-item {
    max-width: 320px;
  }
  
  .benefit-number {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .benefit-text {
    font-size: 1.3rem;
  }
  
  /* Comparison Table */
  th, td {
    padding: 1.5rem;
    font-size: 1.1rem;
  }
  
  th {
    font-size: 1.2rem;
  }
  
  /* About Section */
  .about-content {
    gap: 4rem;
  }
  
  .about-text,
  .about-image {
    min-width: 400px;
  }
  
  .about-features {
    margin-top: 2rem;
  }
  
  .about-features li {
    margin-bottom: 1.2rem;
    padding-left: 2.2rem;
    font-size: 1.1rem;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .feature-card {
    padding: 3rem;
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
  }
  
  .feature-icon i {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.8rem;
  }
  
  .feature-card p {
    font-size: 1.1rem;
  }
  
  /* Functionality Tabs */
  .tabs {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .tab-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .tab-content {
    gap: 4rem;
  }
  
  .tab-image,
  .tab-description {
    min-width: 400px;
  }
  
  .tab-description ul li {
    margin-bottom: 1.2rem;
    padding-left: 2.2rem;
    font-size: 1.1rem;
  }
  
  /* Integration */
  .integration-logos {
    gap: 50px;
    margin: 60px 0;
  }
  
  .integration-logo {
    width: 150px;
    height: 150px;
  }
  
  /* Pricing */
  .pricing-cards {
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .pricing-card {
    padding: 3.5rem 2.5rem;
    min-width: 380px;
    max-width: 450px;
  }
  
  .price {
    font-size: 3rem;
    margin: 1.5rem 0;
  }
  
  .pricing-features {
    margin: 2.5rem 0;
  }
  
  .pricing-features li {
    margin-bottom: 1.2rem;
    padding-left: 2.2rem;
    font-size: 1.1rem;
  }
  
  /* Testimonials */
  .testimonials-slider {
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .testimonial {
    padding: 3rem;
    min-width: 400px;
  }
  
  .testimonial-content {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
  }
  
  .stars {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .client-photo {
    width: 80px;
    height: 80px;
  }
  
  .client-name {
    font-size: 1.2rem;
  }
  
  .client-position {
    font-size: 1rem;
  }
  
  /* FAQ */
  .accordion {
    max-width: 1000px;
    margin: 4rem auto 0;
  }
  
  .accordion-item {
    margin-bottom: 1.5rem;
  }
  
  .accordion-header {
    padding: 1.8rem;
    font-size: 1.2rem;
  }
  
  .accordion-item.active .accordion-content {
    padding: 1.8rem;
    max-height: 250px;
  }
  
  .accordion-content p {
    font-size: 1.1rem;
  }
  
  /* Demo */
  .demo-options {
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .demo-option {
    padding: 3rem;
    min-width: 320px;
    max-width: 420px;
  }
  
  .demo-option i {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  
  .demo-option h3 {
    font-size: 1.8rem;
  }
  
  .demo-option p {
    font-size: 1.1rem;
  }
  
  /* Contact */
  .contact-container {
    gap: 4rem;
    margin-top: 4rem;
  }
  
  .contact-form {
    min-width: 400px;
  }
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  .form-group label {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .form-group textarea {
    height: 180px;
  }
  
  .contact-info-block {
    min-width: 400px;
    padding: 3rem;
  }
  
  .contact-item {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-item div {
    font-size: 1.1rem;
  }
  
  .social-icons {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .social-icons a {
    width: 50px;
    height: 50px;
  }
  
  /* CTA */
  .cta {
    padding: 6rem 0;
  }
  
  .cta p {
    margin-bottom: 3rem;
    font-size: 1.4rem;
  }
  
  /* Footer */
  footer {
    padding: 6rem 0 3rem;
  }
  
  .footer-content {
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .footer-column {
    min-width: 280px;
  }
  
  .footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .footer-column h3:after {
    width: 50px;
    height: 4px;
    margin-top: 0.8rem;
  }
  
  .footer-column ul li {
    margin-bottom: 1.2rem;
  }
  
  .footer-column ul li a {
    font-size: 1.1rem;
  }
  
  .copyright {
    padding-top: 3rem;
    font-size: 1rem;
  }
}