:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #002b36;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

.dg-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dg-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dg-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.dg-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.dg-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.dg-nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.dg-nav-menu a:hover,
.dg-nav-menu a.dg-active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.dg-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.dg-hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.dg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 54, 0.7);
    z-index: 0;
}

.dg-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.dg-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.dg-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.dg-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(87, 197, 182, 0.3);
}

.dg-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 152, 149, 0.4);
}

.dg-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.dg-btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.dg-btn-light {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.dg-btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.dg-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.dg-beginner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
}

.dg-beginner-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.dg-beginner-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.dg-beginner-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dg-beginner-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.dg-beginner-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.dg-beginner-list li {
    padding: 10px 0;
    font-size: 16px;
}

.dg-beginner-list i {
    color: var(--success-color);
    margin-right: 10px;
}

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

.dg-whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dg-wp-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.dg-wp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dg-wp-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.dg-wp-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dg-wp-card p {
    color: #666;
    line-height: 1.8;
}

.dg-wp-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.dg-wp-cta h3,
.dg-wp-cta p {
    color: #fff;
}

.dg-disclaimer {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.dg-disclaimer i {
    margin-right: 10px;
}

.dg-features-section {
    padding: 80px 0;
}

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

.dg-feature-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    transition: var(--transition);
}

.dg-feature-card.dg-transparent {
    background: transparent;
}

.dg-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dg-feature-card i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.dg-feature-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dg-feature-card p {
    color: #666;
}

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

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

.dg-post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.dg-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dg-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dg-post-content {
    padding: 25px;
}

.dg-post-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.dg-post-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dg-post-content p {
    color: #666;
    margin-bottom: 15px;
}

.dg-read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.dg-read-more:hover {
    color: var(--secondary-color);
}

.dg-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.dg-cta-content {
    color: #fff;
}

.dg-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.dg-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.dg-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

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

.dg-footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.dg-footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.dg-footer-col ul {
    list-style: none;
}

.dg-footer-col ul li {
    margin-bottom: 10px;
}

.dg-footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.dg-footer-col a:hover {
    color: var(--accent-color);
}

.dg-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.dg-social-links a {
    color: #fff;
    transition: var(--transition);
}

.dg-social-links a:hover {
    color: var(--accent-color);
}

.dg-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.dg-contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.dg-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.dg-cookie-banner.show {
    display: block;
}

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

.dg-cookie-text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.dg-cookie-text i {
    margin-right: 10px;
}

.dg-cookie-buttons {
    display: flex;
    gap: 10px;
}

.dg-cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.dg-cookie-btn.dg-accept {
    background: var(--success-color);
    color: #fff;
}

.dg-cookie-btn.dg-decline {
    background: #6c757d;
    color: #fff;
}

.dg-cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.dg-about-header,
.dg-blog-header,
.dg-contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.dg-about-header h1,
.dg-blog-header h1,
.dg-contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.dg-about-intro {
    padding: 80px 0;
}

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

.dg-about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dg-about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.dg-about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.dg-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dg-team-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.dg-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dg-team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.dg-team-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dg-team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.dg-value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dg-value-card i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.dg-blog-content {
    padding: 80px 0;
}

.dg-blog-grid {
    display: grid;
    gap: 40px;
}

.dg-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dg-blog-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.dg-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.dg-blog-date,
.dg-blog-category {
    font-size: 14px;
    color: #999;
}

.dg-blog-card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dg-blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

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

.dg-newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dg-newsletter-box i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.dg-newsletter-box h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dg-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dg-newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.dg-newsletter-form button {
    padding: 15px 30px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.dg-newsletter-form button:hover {
    background: var(--secondary-color);
}

.dg-contact-section {
    padding: 80px 0;
}

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

.dg-contact-info-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.dg-contact-info-box h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.dg-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.dg-info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.dg-info-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.dg-contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dg-contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.dg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.dg-form-group input,
.dg-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.dg-form-group textarea {
    resize: vertical;
}

.dg-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.dg-submit-btn:hover {
    background: var(--secondary-color);
}

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

.dg-map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dg-post-full {
    background: #fff;
}

.dg-post-header {
    background: var(--light-color);
    padding: 60px 0 40px;
}

.dg-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dg-post-meta span {
    color: #999;
    font-size: 14px;
}

.dg-post-meta i {
    margin-right: 5px;
}

.dg-post-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dg-post-lead {
    font-size: 20px;
    color: #666;
}

.dg-post-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.dg-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dg-post-content {
    padding: 60px 0;
}

.dg-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.dg-content-wrapper h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.dg-content-wrapper h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.dg-content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.dg-post-disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
}

.dg-post-disclaimer i {
    color: var(--warning-color);
    margin-right: 10px;
}

.dg-post-navigation {
    background: var(--light-color);
    padding: 30px 0;
}

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

.dg-back-to-blog,
.dg-prev-post,
.dg-next-post {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.dg-back-to-blog:hover,
.dg-prev-post:hover,
.dg-next-post:hover {
    color: var(--accent-color);
}

.dg-post-nav-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .dg-mobile-toggle {
        display: flex;
    }

    .dg-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .dg-nav-menu.active {
        display: flex;
    }

    .dg-hero-title {
        font-size: 32px;
    }

    .dg-hero-subtitle {
        font-size: 16px;
    }

    .dg-about-content,
    .dg-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-whitepaper-grid,
    .dg-features-grid,
    .dg-posts-grid {
        grid-template-columns: 1fr;
    }

    .dg-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .dg-newsletter-form {
        flex-direction: column;
    }

    .dg-post-header h1 {
        font-size: 28px;
    }

    .dg-content-wrapper h2 {
        font-size: 24px;
    }

    .dg-post-navigation .dg-container {
        flex-direction: column;
        gap: 15px;
    }
}