/* Base Styles */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #e6f2ff;
    --secondary-color: #6c757d;
    --secondary-dark: #5a6268;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --body-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --font-family: 'Roboto', Arial, sans-serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--body-color);
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.full-width {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
}

nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta {
    text-align: center;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about-products p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    text-align: center;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px;
    background-color: var(--primary-light);
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    text-align: left;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.product-card h3 {
    padding: 20px 20px 0;
    font-size: 1.25rem;
}

.product-card .price {
    padding: 0 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-card .description {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
}

.product-actions .btn-secondary {
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    color: var(--text-light);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    color: var(--text-light);
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.page-number {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(52, 58, 64, 0.95);
    padding: 15px;
    color: white;
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
}

.cookie-buttons button {
    margin: 0 10px 10px 0;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background-color: white;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-info h1 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.product-meta {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-price {
    margin-bottom: 25px;
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-price .yield {
    font-weight: 500;
    color: var(--success-color);
}

.product-actions {
    margin-bottom: 30px;
    display: flex;
}

.product-actions button {
    margin-right: 10px;
}

.product-short-description {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.product-short-description h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-details-tabs {
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 15px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.document-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.document-icon {
    color: var(--secondary-color);
    margin-right: 15px;
}

.document-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.document-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.faq-question {
    padding: 15px 20px;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* About Page */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.about-intro {
    padding: 80px 0;
    background-color: white;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-intro-text {
    text-align: left;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.values {
    padding: 80px 0;
    background-color: var(--light-color);
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team {
    padding: 80px 0;
    background-color: white;
}

.team h2,
.team .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.team .section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.team-member p:nth-child(3) {
    font-weight: 500;
    color: var(--primary-color);
}

.licenses {
    padding: 80px 0;
    background-color: var(--light-color);
}

.licenses h2 {
    text-align: center;
    margin-bottom: 50px;
}

.licenses-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.licenses-text {
    text-align: left;
}

.licenses-text ul {
    margin: 20px 0;
}

.licenses-image {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.certificate {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.certificate svg {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    margin-left: 15px;
}

.cta .btn-secondary:hover {
    background-color: var(--light-color);
}

/* Contact Page */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card .text-muted {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--light-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-info-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info-container h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-container h3:first-child {
    margin-top: 0;
}

.office-locations .office-item {
    margin-bottom: 20px;
}

.office-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.office-item p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.working-hours p {
    margin-bottom: 10px;
}

.social-icons.large a {
    margin-right: 20px;
}

.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Cart Page */
.cart-section {
    padding: 60px 0;
    background-color: white;
}

.cart-empty-message {
    text-align: center;
    padding: 50px 0;
}

.cart-empty-message svg {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty-message h2 {
    margin-bottom: 10px;
}

.cart-empty-message p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    background-color: var(--light-color);
    padding: 15px;
    text-align: left;
    font-weight: 500;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: var(--border-radius);
}

.cart-product-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.cart-remove {
    color: var(--danger-color);
    cursor: pointer;
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.cart-note {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.cart-note h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cart-note textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 10px;
    font-family: inherit;
    resize: vertical;
}

.cart-summary {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: none;
    padding-top: 20px;
}

.cart-summary button {
    margin-top: 20px;
}

.recommended-products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 50px;
}

.cart-info {
    padding: 60px 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
}

.info-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Checkout Page */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.progress-line {
    width: 100px;
    height: 2px;
    background-color: var(--light-color);
    margin: 0 15px;
}

.progress-line.active {
    background-color: var(--primary-color);
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.checkout-form-container h2,
.checkout-summary h2 {
    margin-bottom: 30px;
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-column: 1 / -1;
}

.checkout-items {
    margin-bottom: 30px;
}

.checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-right: 15px;
}

.checkout-item-info h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.checkout-item-price {
    color: var(--primary-color);
    font-weight: 500;
}

.checkout-totals {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.totals-row.total {
    font-weight: bold;
    border-bottom: none;
    padding-top: 20px;
}

.checkout-security {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.security-icon {
    color: var(--success-color);
    margin-right: 15px;
}

.checkout-support {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.checkout-support h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.checkout-support p {
    margin-bottom: 10px;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    background-color: white;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-details {
    text-align: left;
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.next-steps {
    margin-top: 20px;
}

.next-steps h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.success-actions {
    margin-top: 30px;
}

.success-actions a {
    margin: 0 10px;
}

.additional-info {
    padding: 80px 0;
    background-color: var(--light-color);
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card .info-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .product-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-intro-content,
    .licenses-content,
    .contact-wrapper,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .about-intro-stats {
        margin-top: 30px;
    }
    
    .cart-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 0 15px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .advantages-grid,
    .product-features,
    .products-grid,
    .features-grid,
    .documents-list,
    .related-products-grid,
    .values-grid,
    .team-grid,
    .contact-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-line {
        width: 50px;
    }
    
    .success-actions {
        display: flex;
        flex-direction: column;
    }
    
    .success-actions a {
        margin: 0 0 10px 0;
    }
}
