
/* Block 1 */
.hero-banner-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 33, 62, 0.85), rgba(26, 26, 46, 0.75));
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay,
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content-wrapper {
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.hero-cta-button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-banner-section {
        min-height: 500px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 450px;
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.digital-transformation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.digital-transformation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.05) 0%, rgba(108, 117, 125, 0.03) 100%);
    transform: rotate(15deg);
    z-index: 1;
}

.content-wrapper {
    z-index: 2;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tech-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.tech-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.image-stack {
    position: relative;
    z-index: 2;
}

.main-tech-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.tech-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

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

.tech-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tech-card-content {
    padding: 1.5rem;
    text-align: left;
}

.tech-card-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.tech-card-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .digital-transformation-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .main-tech-image {
        height: 300px;
    }
    
    .floating-stats {
        position: static;
        margin-top: 20px;
    }
    
    .tech-showcase {
        padding: 30px 20px;
    }
    
    .tech-cards {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.sustainability-legal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-legal-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sustainability-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 20px;
    text-align: center;
}

.sustainability-subtitle {
    font-size: 1.2rem;
    color: #047857;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.green-office-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.green-office-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.green-office-container:hover .green-office-image {
    transform: scale(1.05);
}

.carbon-neutral-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.sustainability-content {
    padding-left: 40px;
}

.content-section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 25px;
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 35px;
}

.eco-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    flex: 1;
    min-width: 200px;
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #065f46;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.green-initiative-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.green-initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.initiative-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.initiative-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.green-initiative-card:hover .initiative-image {
    transform: scale(1.1);
}

.initiative-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 1.3rem;
}

.initiative-content {
    padding: 25px;
}

.initiative-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 15px;
}

.initiative-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.initiative-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    color: #065f46;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

.environmental-impact-dashboard {
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 600;
    color: #064e3b;
    text-align: center;
    margin-bottom: 40px;
}

.impact-visualization {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.impact-stat-large {
    flex-shrink: 0;
}

.stat-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#22c55e 0deg 360deg, #e5e7eb 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: white;
}

.stat-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #065f46;
}

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 5px;
}

.impact-details {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.detail-label {
    font-weight: 500;
    color: #374151;
}

.detail-value {
    font-weight: 700;
    color: #065f46;
    font-size: 1.1rem;
}

.sustainability-cta {
    text-align: center;
    margin-top: 30px;
}

.eco-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.eco-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    color: white;
}

@media (max-width: 992px) {
    .sustainability-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .impact-visualization {
        flex-direction: column;
        gap: 30px;
    }
    
    .impact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sustainability-main-title {
        font-size: 2.2rem;
    }
    
    .content-section-title {
        font-size: 1.8rem;
    }
    
    .eco-metrics {
        flex-direction: column;
    }
    
    .metric-item {
        min-width: auto;
    }
    
    .environmental-impact-dashboard {
        padding: 25px;
    }
}

/* Block 4 */
.order-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
}

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(25, 135, 84, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.form-header-content {
  text-align: center;
  margin-bottom: 50px;
}

.form-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  position: relative;
}

.form-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #198754);
  border-radius: 2px;
}

.form-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.consultation-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #198754;
  font-weight: 500;
}

.benefit-item i {
  font-size: 1.1rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.form-field-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
}

.form-control-modern {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-control-modern:focus {
  outline: none;
  border-color: #0d6efd;
  background: white;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.input-icon,
.textarea-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  transition: color 0.3s ease;
}

.form-control-modern:focus + .input-icon,
.form-control-modern:focus ~ .textarea-icon {
  color: #0d6efd;
}

select.form-control-modern {
  padding-left: 20px;
  cursor: pointer;
}

textarea.form-control-modern {
  padding-left: 50px;
  resize: vertical;
  min-height: 120px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
  background: #0d6efd;
  border-color: #0d6efd;
}

input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.privacy-link {
  color: #0d6efd;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-submit-area {
  text-align: center;
}

.submit-button-advanced {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  min-width: 280px;
}

.submit-button-advanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

.button-icon {
  transition: transform 0.3s ease;
}

.submit-button-advanced:hover .button-icon {
  transform: translateX(4px);
}

.form-note {
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.contact-alternatives {
  margin-top: 60px;
  text-align: center;
}

.alternatives-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-method {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d6efd, #198754);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.2rem;
}

.method-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.method-content p {
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}

.availability {
  font-size: 0.85rem;
  color: #666;
}

.consultation-info-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.card-header {
  position: relative;
  overflow: hidden;
}

.consultation-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(25, 135, 84, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.card-content {
  padding: 30px;
}

.card-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 25px;
}

.expectation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.expectation-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: #f8f9ff;
  border-radius: 8px;
}

.expectation-item i {
  color: #198754;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.expectation-item span {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 12px;
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d6efd;
  line-height: 1.2;
}

.metric-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
}

.urgency-icon {
  color: #dc3545;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.urgency-text strong {
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.urgency-text p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.emergency-number {
  color: #dc3545;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.emergency-number:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
  }
  
  .form-main-title {
    font-size: 2.2rem;
  }
  
  .consultation-benefits {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .success-metrics {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .urgency-notice {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .submit-button-advanced {
    width: 100%;
    min-width: auto;
  }
}
